Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "The Video Surfer",
"version": "1.1",
"description": "you can sort TikTok tiles by oldest, newest, views, likes or comments",
"permissions": [
"storage",
"webRequest"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.tiktok.com\/*"
],
"js": [
"script.js"
]
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"host_permissions": [
"*:\/\/*.tiktok.com\/*"
]
}