-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
44 lines (44 loc) · 1.02 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
35
36
37
38
39
40
41
42
43
44
{
"version": "1.3.0",
"manifest_version": 3,
"name": "Right to be forgotten",
"description": "نداشتن امکان حذف حسابکاربری در بسیاری از سرویسها نقض حریمشخصی کاربران است که با حق فراموش شدن برای حذف اطلاعات، مغایرت دارد.",
"permissions": [
"activeTab",
"tabs",
"contextMenus"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "rtbf.ir",
"default_popup": "popup.html",
"default_icon": {
"16": "assets/images/logo.png",
"32": "assets/images/logo.png",
"48": "assets/images/logo.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"popup.css"
],
"js": [
"popup.js"
]
}
],
"icons": {
"16": "assets/images/logo.png",
"48": "assets/images/logo.png",
"128": "assets/images/logo.png"
}
}