-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (39 loc) · 879 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
{
"manifest_version": 2,
"name": "Twitter VidGet",
"description": "Chrome extension to download video entities from a tweet.",
"version": "0.2.2",
"homepage_url": "https://github.com/martianboy/chrome-twitter-vidget",
"icons": {
"128": "img/128.png",
"32": "img/32.png"
},
"permissions": [
"tabs",
"webRequest",
"webNavigation",
"storage",
"contextMenus",
"https://api.twitter.com/*"
],
"page_action": {
"default_icon": "img/logo.png",
"default_title": "Twitter VidGet",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"js/settings.js",
"lib/codebird.js",
"js/twitter.js",
"js/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": ["https://api.twitter.com/oauth/authorize"],
"js": ["js/getPin.js"]
}
]
}