38 lines
810 B
JSON
38 lines
810 B
JSON
{
|
|
"name": "Discrete Extraction Tools",
|
|
"version": "1.0",
|
|
"manifest_version": 3,
|
|
"action": {
|
|
"default_icon": "icon.png",
|
|
"default_popup": "pages/popup/popup.html"
|
|
},
|
|
"permissions": [
|
|
"activeTab",
|
|
"scripting",
|
|
"tabs"
|
|
],
|
|
"host_permissions": [
|
|
"https://www.boolean-algebra.com/",
|
|
"https://www.wolframalpha.com/"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://www.boolean-algebra.com/"],
|
|
"js": ["scripts/boolean-algebra/outer.js"]
|
|
},
|
|
{
|
|
"matches": ["https://www.wolframalpha.com/*"],
|
|
"js": ["scripts/induction/outer.js"]
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"resources": ["scripts/boolean-algebra/inner.js"]
|
|
}
|
|
]
|
|
}
|