-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
34 lines (34 loc) · 989 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
{
"description": "Watch TikTok videos without logging in! Just open a TikTok link and this extension will redirect you to TikNot",
"homepage_url": "https://github.com/ToastEnergy/TikNot-Ext/",
"manifest_version": 2,
"name": "Tiknot",
"version": "1.1",
"permissions": ["tabs", "storage", "webNavigation", "contextMenus"],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_specific_settings": {
"gecko": {
"id": "tiknot@chickenmatty.me",
"strict_min_version": "55.0"
},
"gecko_android": {
"id": "tiknot@chickenmatty.me",
"strict_min_version": "113.0"
}
},
"icons": {
"48": "icons/tiknot48.png",
"96": "icons/tiknot96.png"
},
"browser_action": {
"default_title": "Redirect to TikNot",
"default_icon": {
"48": "icons/tiknot48.png"
}
}
}