-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (33 loc) · 879 Bytes
/
manifest.json
File metadata and controls
35 lines (33 loc) · 879 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
28
29
30
31
32
33
34
35
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "WebCensor - Profanity Filter",
"short_name": "WebCensor",
"description": "Blocks the swear words, bad, strong, foul language, swearing, cursing, etc. Make browsing for kids safer and Internet cleaner!",
"version": "1.8",
"offline_enabled": true,
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html"
},
"permissions": [
"tabs", "<all_urls>","storage","browsingData"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches":["<all_urls>"],
"js":["functions.js"]
}
],
"background": {
"scripts": ["scripts.js"],
"persistent": false
},
"options_page": "options.html",
"web_accessible_resources": ["words.json"]
}