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": "Product Hunt Vote Monitor",
"version": "1.0.0",
"description": "Monitor Product Hunt votes and track vote curves over time",
"permissions": [
"storage",
"alarms",
"activeTab",
"notifications"
],
"host_permissions": [
"https:\/\/www.producthunt.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.producthunt.com\/products\/*"
],
"js": [
"content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Product Hunt Vote Monitor"
},
"web_accessible_resources": [
{
"resources": [
"dashboard.html",
"dashboard.css",
"dashboard.js",
"chart.min.js",
"data-manager.js"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}