-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 854 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
{
"manifest_version": 2,
"name": "Phimmoi Unblocker",
"description": "Unblock foreign country restriction on phimmoi.net!!",
"author": "Lam Ngo - [email protected]",
"version": "0.2.4",
"content_scripts": [
{
"matches": [
"http://www.phimmoizz.net/*",
"http://www.phimmoiz.net/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"permissions": [
"background",
"webRequest",
"webRequestBlocking",
"*://www.phimmoiz.net/*",
"*://www.phimmoizz.net/*"
],
"icons": {
"16": "images/movie-logo.png",
"128": "images/movie-logo.png"
},
"browser_action": {
"default_icon": "images/movie-logo.png",
"default_popup": "popup/index.html",
"default_title": "Unblock foreign country restriction on phimmoi.net"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
}
}