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 Ads Video Downloader",
"version": "1.0.0",
"description": "Activate this extension to easily download TikTok ads videos from Creative Center in one click",
"permissions": [
"downloads",
"notifications",
"activeTab",
"contextMenus"
],
"host_permissions": [
"https:\/\/*.tiktok.com\/*",
"https:\/\/*.tiktokv.com\/*",
"https:\/\/*.tiktokcdn.com\/*",
"https:\/\/ads.tiktok.com\/*",
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/ads.tiktok.com\/*",
"https:\/\/*.tiktok.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_start"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"64": "icon64.png"
}
},
"icons": {
"64": "icon64.png"
},
"web_accessible_resources": [
{
"resources": [
"content.css"
],
"matches": [
"https:\/\/*.tiktok.com\/*"
]
}
]
}