-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (30 loc) · 790 Bytes
/
Copy pathmanifest.json
File metadata and controls
31 lines (30 loc) · 790 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
{
"manifest_version": 2,
"name": "Modify href",
"description": "A Chrome extension for modifying the href / host / domain of the links on a web page",
"version": "0.0.4",
"options_page": "/src/options/options.html",
"browser_action": {
"default_icon": "/images/off48.png",
"default_title": "Click to modify!"
},
"permissions": [
"activeTab",
"storage"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"background": {
"scripts": [
"/src/background.js"
],
"persistent": false
},
"icons": {
"16": "/images/off16.png",
"32": "/images/off32.png",
"48": "/images/off48.png",
"64": "/images/off64.png",
"128": "/images/off128.png"
},
"author": "Chang Liu"
}