-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (35 loc) · 984 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
{
"description": "If we click button inside popup then etxt from api is update in dom with that id currently id is comment",
"manifest_version": 2,
"name": "Add Text From Extension",
"version": "1.0",
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/beastify",
"icons": {
"48": "icons/beasts-48.png"
},
"permissions": [
"notifications",
"activeTab",
"webRequest",
"<all_urls>"
],
"browser_action": {
"default_icon": "icons/beasts-32.png",
"theme_icons": [{
"light": "icons/beasts-32.png",
"dark": "icons/beasts-32.png",
"size": 32
}],
"default_title": "Click to add text in textarea",
"default_popup": "popup/choose_beast.html"
},
"web_accessible_resources": [
"beasts/*.jpg"
],
"content_scripts":[
{
"matches": ["*://*.localhost/*","<all_urls>"],
"js": ["popup/browser-polyfill.js","/content_scripts/beastify.js"]
}
]
}