-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
34 lines (34 loc) · 1.11 KB
/
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
{
"name": "TJ.tweetignore",
"version": "1.1",
"description": "",
"manifest_version": 2,
"permissions": [
"storage",
"https://tjournal.ru/category/%D1%82%D0%B2%D0%B8%D1%82%D1%8B",
"https://tjournal.ru/category/%D1%82%D0%B2%D0%B8%D1%82%D1%8B/day",
"https://tjournal.ru/category/%D1%82%D0%B2%D0%B8%D1%82%D1%8B/week",
"https://tjournal.ru/category/%D1%82%D0%B2%D0%B8%D1%82%D1%8B/month",
"tabs",
"webNavigation",
"declarativeContent"
],
"background": {
"scripts": ["background.js"]
},
"page_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://tjournal.ru/category/%D1%82%D0%B2%D0%B8%D1%82%D1%8B",
"https://tjournal.ru/category/%D1%82%D0%B2%D0%B8%D1%82%D1%8B/day",
"https://tjournal.ru/category/%D1%82%D0%B2%D0%B8%D1%82%D1%8B/week",
"https://tjournal.ru/category/%D1%82%D0%B2%D0%B8%D1%82%D1%8B/month"
],
"js": ["twignore.js"],
"css": ["twignore.css"]
}
]
}