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": "Trend Spotter - TikTok & Instagram Bookmark Extractor",
"version": "1.1.0",
"description": "Extract bookmarked TikTok and Instagram video URLs and send them to Trend Spotter for analysis",
"permissions": [
"activeTab",
"storage",
"scripting"
],
"host_permissions": [
"https:\/\/www.tiktok.com\/*",
"https:\/\/*.tiktok.com\/*",
"https:\/\/www.instagram.com\/*",
"https:\/\/*.instagram.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.tiktok.com\/*",
"https:\/\/*.tiktok.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.instagram.com\/*",
"https:\/\/*.instagram.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"popup.js"
],
"matches": [
"https:\/\/www.tiktok.com\/*",
"https:\/\/www.instagram.com\/*"
]
}
]
}