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,
"version": "0.0.0.1",
"description": "A tool to download your Tiktok collections. Requires you to be signed in and load the page of the collection.",
"name": "Alexandria - Save Your Library of Collections",
"author": "Charlie Martinez Dominguez",
"action": {
"default_popup": "index.html",
"default_title": "Alexandria"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.tiktok.com\/*\/collection\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"matches": [
"https:\/\/www.tiktok.com\/*"
],
"resources": [
"work.js",
"panel.html",
"panel.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"256": "A.png"
}
}