Get Stuff Instantly -- Download and play it anywhere :-)
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Seedr",
"description": "Get Stuff Instantly -- Download and play it anywhere :-)",
"version": "1.0.3",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqgZmjeOdp8l28WluN4YxGEi2dCCb+ktKKS9fSDrUfh6lWfJsiW6OIP6YahPu1CK4ST87Hslmz2Kfhnn5/kiN1+WeEenu9gEZc6+NiU8ethOjtN+XqkiiRDji7amot1Gw0OrucSUAiLqBBWOVnS+KRChPiq3PlumdRnOX7PqL2PcoWQX6DV2n/eQy8/wN2BBGcz57qKxvfA/pbEqRNsBPQOhblGjmqd4bSE8SeIIBV48oiVCu1H3lB1PmRUNtGwGpAPcZx+d1sLEmSBaLYbaZpLsoydHb3YKFXAzH0EmWouawI9K8GerywE2BQwSFdoGV4wN/Lv4vx/OKRPB9HeoKpQIDAQAB",
"background": {
"service_worker": "background.js",
"scripts": [
"background.js"
],
"type": "module"
},
"permissions": [
"tabs",
"storage",
"contextMenus",
"downloads",
"activeTab",
"webRequest"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
{
"resources": [
"images/*"
],
"matches": [
"*://*/*"
]
}
],
"externally_connectable": {
"matches": [
"*://*.seedr.cc/*"
]
},
"content_scripts": [
{
"js": [
"content.js"
],
"css": [
"content.css"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_end",
"all_frames": true
}
],
"action": {
"default_icon": "favicon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "favicon16.png",
"32": "favicon.png",
"128": "favicon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}