Working
This commit is contained in:
48
manifest.json
Normal file
48
manifest.json
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Splice Downloader",
|
||||
"version": "1.0.0",
|
||||
"description": "Capture Splice S3 audio links on matching pages and download them.",
|
||||
"permissions": [
|
||||
"tabs",
|
||||
"storage",
|
||||
"downloads",
|
||||
"webRequest",
|
||||
"*://*.splice.com/*",
|
||||
"*://*.amazonaws.com/*",
|
||||
"*://*.amazonaws.com.cn/*",
|
||||
"webNavigation"
|
||||
],
|
||||
"background": {
|
||||
"scripts": [
|
||||
"background.js"
|
||||
]
|
||||
},
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": [
|
||||
"*://*.splice.com/*"
|
||||
],
|
||||
"js": [
|
||||
"content-script.js"
|
||||
],
|
||||
"run_at": "document_idle"
|
||||
}
|
||||
],
|
||||
"browser_action": {
|
||||
"default_title": "S3 Audio Capture",
|
||||
"default_popup": "popup.html"
|
||||
},
|
||||
"web_accessible_resources": [
|
||||
"history.html",
|
||||
"history.js",
|
||||
"history.css",
|
||||
"page-probe.js"
|
||||
],
|
||||
"applications": {
|
||||
"gecko": {
|
||||
"id": "s3-audio-capture@splice.local",
|
||||
"strict_min_version": "109.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user