-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
41 lines (41 loc) · 2.39 KB
/
manifest.json
File metadata and controls
41 lines (41 loc) · 2.39 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"manifest_version": 3,
"name": "PinStats: Reveal Hidden Saves & Repins",
"version": "1.0.2",
"description": "Reveal hidden Pinterest stats: save counts, repins, comments & reactions on every pin. Essential analytics for creators.",
"permissions": ["scripting", "activeTab", "downloads", "storage"],
"host_permissions": ["*://*.pinterest.com/*", "*://*.pinterest.de/*", "*://*.pinterest.fr/*", "*://*.pinterest.co.uk/*", "*://*.pinterest.ca/*", "*://*.pinterest.com.au/*", "*://*.pinterest.jp/*", "*://*.pinterest.es/*", "*://*.pinterest.it/*", "*://*.pinterest.nl/*", "*://*.pinterest.pt/*", "*://*.pinterest.ru/*", "*://*.pinterest.se/*", "*://*.pinterest.ch/*", "*://*.pinterest.at/*", "*://*.pinterest.com.mx/*", "*://*.pinterest.cl/*", "*://*.pinterest.co.kr/*"],
"action": {
"default_popup": "src/popup.html",
"default_icon": {
"16": "public/icons/icon16.png",
"32": "public/icons/icon32.png",
"48": "public/icons/icon48.png",
"128": "public/icons/icon128.png"
},
"default_title": "PinStats Settings"
},
"content_scripts": [
{
"matches": ["*://*.pinterest.com/*", "*://*.pinterest.de/*", "*://*.pinterest.fr/*", "*://*.pinterest.co.uk/*", "*://*.pinterest.ca/*", "*://*.pinterest.com.au/*", "*://*.pinterest.jp/*", "*://*.pinterest.es/*", "*://*.pinterest.it/*", "*://*.pinterest.nl/*", "*://*.pinterest.pt/*", "*://*.pinterest.ru/*", "*://*.pinterest.se/*", "*://*.pinterest.ch/*", "*://*.pinterest.at/*", "*://*.pinterest.com.mx/*", "*://*.pinterest.cl/*", "*://*.pinterest.co.kr/*"],
"js": ["src/content.ts"],
"run_at": "document_start"
}
],
"background": {
"service_worker": "src/background.ts",
"type": "module"
},
"web_accessible_resources": [
{
"resources": ["injector.js"],
"matches": ["*://*.pinterest.com/*", "*://*.pinterest.de/*", "*://*.pinterest.fr/*", "*://*.pinterest.co.uk/*", "*://*.pinterest.ca/*", "*://*.pinterest.com.au/*", "*://*.pinterest.jp/*", "*://*.pinterest.es/*", "*://*.pinterest.it/*", "*://*.pinterest.nl/*", "*://*.pinterest.pt/*", "*://*.pinterest.ru/*", "*://*.pinterest.se/*", "*://*.pinterest.ch/*", "*://*.pinterest.at/*", "*://*.pinterest.com.mx/*", "*://*.pinterest.cl/*", "*://*.pinterest.co.kr/*"]
}
],
"icons": {
"16": "public/icons/icon16.png",
"32": "public/icons/icon32.png",
"48": "public/icons/icon48.png",
"128": "public/icons/icon128.png"
}
}