themedweb/manifest.json
2024-12-14 21:17:19 +00:00

23 lines
351 B
JSON

{
"manifest_version": 2,
"name": "themedweb",
"version": "1.0",
"description": "Loads custom colours into css from a config file",
"icons": {
"48": "icons/logo-48.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["theme.js","main.js"]
}
],
"permissions": [
"activeTab", "storage"
]
}