-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
38 lines (38 loc) · 888 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
{
"name": "Unlimited Studyphim",
"description": "Đây là extension giúp bạn coi phim studyphim.vn không bị gián đoạn",
"manifest_version": 2,
"version": "1.0.0",
"background": {
"scripts": ["javascript/background.js"],
"persistent": false
},
"permissions": [
"notifications",
"tabs",
"http://www.studyphim.vn/movies/*"
],
"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
},
"default_title": "It2-team",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http://www.studyphim.vn/movies/*"
],
"run_at": "document_start",
"all_frames": true,
"js": ["javascript/content.js", "javascript/jquery-3.2.1.min.js"]
}
],
"icons": {
"128": "images/icon-128.png",
"48": "images/icon-48.png",
"16":"images/icon-16.png"
}
}