-
Notifications
You must be signed in to change notification settings - Fork 23
/
manifest.json
31 lines (31 loc) · 1.14 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
{
"background": {
"scripts": [ "background.js" ]
},
"browser_action": {
"default_icon": "logo16.png",
"default_title": "JSON-handle"
},
"content_scripts": [ {
"all_frames": false,
"js": [ "content_scripts.js" ],
"matches": [ "http://*/*", "https://*/*", "ftp://*/*", "file://*", "file:///*" ],
"run_at": "document_end"
} ],
"default_locale": "en",
"description": "It's a browser and editor for JSON document.You can get a beautiful view",
"icons": {
"128": "logo128.png",
"16": "logo16.png",
"48": "logo48.png"
},
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDTA0oqw/Y1Aey+BoB6FW35vy2BHNT27eK+S8PZuHas82TxIAi3i3UDYj3bUqpScevWIwgrRBk5v/9jHypmxz4BEFtJFEcpEabl/3fVQmpT1M4owmQP8RMeMFJKa3GBB9gFf9r+DOKc4VwScZ1/dYXvBn3Nk08tiQgW94l+wSr/wwIDAQAB",
"manifest_version": 2,
"name": "JSON-handle",
"offline_enabled": true,
"options_page": "options.html",
"permissions": [ "webRequest", "tabs", "\u003Call_urls>" ],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.4.19",
"web_accessible_resources": [ "JSON-handle/JSON-handle.html" ]
}