forked from jswanner/DontF-WithPaste
-
Notifications
You must be signed in to change notification settings - Fork 21
/
manifest.json
45 lines (45 loc) · 931 Bytes
/
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
{
"background": {
"scripts": [
"dfwp.js",
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "clipboard-inactive-32.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"dfwp.js",
"content.js"
],
"matches": ["<all_urls>"]
}
],
"description": "Prevents the blocking of copying from & pasting into input fields",
"homepage_url": "https://github.com/aaronraimist/DontFuckWithPaste",
"icons": {
"48": "clipboard-inactive-48.png",
"128": "clipboard-inactive-128.png"
},
"manifest_version": 2,
"name": "Don't Fuck With Paste",
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"permissions": [
"storage",
"tabs"
],
"version": "2.7",
"applications": {
"gecko": {
"id": "[email protected]"
}
}
}