Initial commit

This commit is contained in:
hensm
2018-06-08 04:56:02 +01:00
commit d815fb7af0
70 changed files with 8370 additions and 0 deletions

34
ext/src/manifest.json Executable file
View File

@@ -0,0 +1,34 @@
{
"name": "__MSG_extension_name__"
, "description": "__MSG_extension_description__"
, "version": "0.0.1"
, "applications": {
"gecko": {
"id": "caster@matt.tf"
, "strict_min_version": "57.0"
}
}
, "browser_action": {
"default_popup": "popup/index.html"
}
, "background": {
"scripts": [ "main.js" ]
}
, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
, "default_locale": "en"
, "manifest_version": 2
, "permissions": [
"menus"
, "nativeMessaging"
, "webNavigation"
, "webRequest"
, "webRequestBlocking"
, "<all_urls>"
]
, "web_accessible_resources": [
"shim/bundle.js"
, "dm.js"
]
}