-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 1.13 KB
/
manifest.json
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
42
43
44
45
{
"name": "Geacc Chrome Extension",
"version": "0.1",
"description": "Detect explicit images on the page using Purify.ai Geacc pretrained model and TensorFlow.js.",
"homepage_url": "https://github.com/purify-ai/geacc-crx",
"author": "Purify Foundation",
"minimum_chrome_version": "31",
"manifest_version": 2,
"permissions": [
"*://*/*",
"contextMenus",
"notifications",
"activeTab",
"downloads",
"declarativeContent",
"webRequest",
"webRequestBlocking",
"<all_urls>",
"storage",
"tabs"
],
"browser_action": {
"default_icon": "/images/icon_48.png",
"default_title": "Geacc",
"default_popup": "/src/popup.html"
},
"icons": {
"16": "/images/icon_16.png",
"48": "/images/icon_48.png",
"128": "/images/icon_128.png"
},
"background": {
"scripts": ["/src/background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["/src/content.js"],
"all_frames": true,
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}