{
"$schema": "https://json.schemastore.org/chrome-manifest",
"manifest_version": 3,
"name": "WJUtils",
"description": "A collection of utilities to enhance your online experience",
"version": "0.1.0",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
},
"action": {
"default_popup": "dist/popup.html",
"default_title": "WJUtils"
},
"permissions": ["storage", "activeTab", "scripting", "tabs"],
"host_permissions": ["*://*/*"],
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["./dist/background.js"], // this loads!
"css": [
"./dist/css/tokens/color.css", // these do not
"./dist/css/tokens/shape.css",
"./dist/css/tokens/theme.css",
"./dist/css/tokens/typography.css",
"./dist/css/colors.css",
"./dist/css/fonts.css",
"./dist/css/theme.css",
"./dist/css/typography.css"
]
}
],
"options_ui": {
"page": "dist/popup.html",
"open_in_tab": true,
"browser_style": false
}
}
{
"$schema": "https://json.schemastore.org/chrome-manifest",
"manifest_version": 3,
"name": "WJUtils",
"description": "A collection of utilities to enhance your online experience",
"version": "0.1.0",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
},
"action": {
"default_popup": "dist/popup.html",
"default_title": "WJUtils"
},
"permissions": ["storage", "activeTab", "scripting", "tabs"],
"host_permissions": ["*://*/*"],
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["./dist/background.js"], // this loads!
"css": [
"./dist/css/tokens/color.css", // these do not
"./dist/css/tokens/shape.css",
"./dist/css/tokens/theme.css",
"./dist/css/tokens/typography.css",
"./dist/css/colors.css",
"./dist/css/fonts.css",
"./dist/css/theme.css",
"./dist/css/typography.css"
]
}
],
"options_ui": {
"page": "dist/popup.html",
"open_in_tab": true,
"browser_style": false
}
}