forked from ospreys-2014/PinPoint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
27 lines (27 loc) · 823 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
{
"manifest_version": 2,
"name": "PinPoint",
"description": "bookmark your favorite YouTube video moments",
"version": "1.40",
"background": {
"scripts": ["JSONparser.js", "/popup/popup.js"],
"persistent": true
},
"browser_action": {
"default_icon": "PP_logo.png"
},
"content_scripts": [{
"matches": ["http://www.youtube.com/*", "https://www.youtube.com/*"],
"all_frames": true,
"js": ["widget/widget.js", "widget/pinpoint-notes-presenter.js"],
"css": ["/widget/widget.css"],
"run_at":"document_start"
}],
"permissions": [
"storage",
"tabs",
"http://www.youtube.com/*",
"https://www.youtube.com/*"
],
"options_page": "/dashboard/dashboard.html"
}