23 lines
351 B
JSON
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"
|
|
]
|
|
}
|
|
|