Теперь по нажатии иконки расширения будет появляться меню. В нем добавил возможность выключения расширения
31 lines
604 B
JSON
31 lines
604 B
JSON
{
|
|
"name": "LMS helper ♥",
|
|
"description": "Easy answers from your heart. Made with love by FutureX",
|
|
"icons": {
|
|
"16": "icon.png",
|
|
"32": "icon.png",
|
|
"48": "icon.png",
|
|
"128": "icon.png"
|
|
},
|
|
"version": "1.4.8.8",
|
|
"manifest_version": 2,
|
|
"browser_action": {
|
|
"default_icon": "icon.png",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [ "*://www.cambridgelms.org/*" ],
|
|
"js": [ "jquery.js", "inject.js" ],
|
|
"run_at": "document_end",
|
|
"all_frames": true
|
|
}
|
|
],
|
|
"permissions": [
|
|
"tabs",
|
|
"storage"
|
|
]
|
|
} |