mirror of
https://github.com/wassname/mad.git
synced 2026-06-27 16:10:31 +08:00
34 lines
732 B
JSON
34 lines
732 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "MAD - Mindful Anti Distraction",
|
|
"short_name": "MAD BETA",
|
|
"description": "This extension will hopefully help you be less distracted",
|
|
"version": "0.2.1.1",
|
|
"background": {
|
|
"scripts": ["js/shared/jquery.min.js","js/checkerino.js","background.js"],
|
|
"pages": ["background.html"]
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_icon": "img/128.png",
|
|
"default_title": "MAD",
|
|
"default_popup": "popup.html"
|
|
},
|
|
|
|
"web_accessible_resources":[
|
|
"background.html",
|
|
"css/*",
|
|
"js/*"
|
|
],
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
|
|
|
"permissions": [
|
|
"activeTab",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"storage",
|
|
"<all_urls>",
|
|
"tabs"
|
|
]
|
|
}
|