mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
54 lines
1.0 KiB
JSON
54 lines
1.0 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Encora Tools",
|
|
"version": "0.1.0",
|
|
|
|
"icons": {
|
|
"48": "assets/icons/tools-48.png",
|
|
"96": "assets/icons/tools-96.png"
|
|
},
|
|
"description": "Adds extra features to the Encora trading site.",
|
|
"homepage_url": "https://musicalbean.carrd.co",
|
|
"short_name": "Encora Tools",
|
|
|
|
"permissions": [
|
|
"storage",
|
|
"webRequest"
|
|
],
|
|
|
|
"content_security_policy": "script-src 'self'; object-src 'self'",
|
|
|
|
"__chrome|firefox__author": "musicalbean",
|
|
"__opera__developer": {
|
|
"name": "musicalbean"
|
|
},
|
|
|
|
"__firefox__applications": {
|
|
"gecko": {
|
|
"id": "{754FB1AD-CC3B-4856-B6A0-7786F8CA9D17}"
|
|
}
|
|
},
|
|
|
|
"__chrome__minimum_chrome_version": "49",
|
|
"__opera__minimum_opera_version": "36",
|
|
|
|
"background": {
|
|
"scripts": [
|
|
"js/background.bundle.js"
|
|
],
|
|
"__chrome|opera__persistent": false
|
|
},
|
|
|
|
"content_scripts": [{
|
|
"matches": [
|
|
"*://*.encora.it/*"
|
|
],
|
|
"js": [
|
|
"js/contentScript.bundle.js"
|
|
],
|
|
"css": [
|
|
"assets/css/extension.css"
|
|
]
|
|
}]
|
|
}
|