Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "TagFast: Mark Profiles as Seen & Track Leads on LinkedIn, Twitter\/X, etc",
"description": "Track social media outreach instantly. Save profiles, set follow up reminders, add labels. Works on LinkedIn, X, YouTube & More",
"version": "1.4.0",
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"128": "icon\/128.png"
},
"permissions": [
"storage",
"webNavigation",
"contextMenus",
"activeTab"
],
"commands": {
"toggle-done": {
"suggested_key": {
"default": "Alt+S",
"mac": "Alt+S"
},
"description": "Toggle Profile status"
}
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"data_collection_permissions": {
"required": [
"none"
]
}
}
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "YourExtension",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/tagfast.web.app\/auth",
"https:\/\/tagfast.web.app\/auth-success",
"https:\/\/tagfast.web.app\/dashboard",
"https:\/\/tagfast.web.app\/login",
"https:\/\/tagfast.web.app\/signup",
"https:\/\/tagfast.web.app\/welcome",
"https:\/\/tagfast.web.app\/welcome\/*"
],
"all_frames": true,
"run_at": "document_idle",
"js": [
"content-scripts\/auth.js"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"content-scripts\/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content-scripts\/content.css"
],
"use_dynamic_url": true,
"matches": [
"<all_urls>"
]
}
]
}