-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
27 lines (27 loc) · 770 Bytes
/
manifest.json
File metadata and controls
27 lines (27 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"manifest_version": 3,
"name": "Mubi2boxd - Exporting Data by od3zza", // Buy me a pizza 🍕 https://ko-fi.com/od3zza
"version": "1.0",
"description": "Export your stuffs from MUBI to Letterboxd 💾",
"author": "od3zza",
"permissions": ["activeTab", "scripting"], // Request permission to access the active tab
"host_permissions": ["https://mubi.com/*"],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://mubi.com/pt/users/*"],
"js": ["content.js"]
}
]
}