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": "TikTok Search Sorter",
"version": "1.0",
"description": "Sorts TikTok search results by Likes or Date!",
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"*:\/\/*.tiktok.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.tiktok.com\/search*"
],
"js": [
"content_script.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"injector.js"
],
"matches": [
"*:\/\/*.tiktok.com\/*"
]
}
],
"icons": {
"48": "icon48.png",
"128": "icon128.png"
}
}