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": "Producthunt Launcher Helper",
"short_name": "Producthunt Launcher Helper",
"version": "1.0.0",
"description": "Display daily product vote counts on ProductHunt homepage with top 3 highlighting and competition tracking for makers.",
"icons": {
"16": "\/icons\/icon-16.png",
"32": "\/icons\/icon-32.png",
"64": "\/icons\/icon-64.png",
"128": "\/icons\/icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"index.html",
"content.js"
],
"matches": [
"https:\/\/www.producthunt.com\/*"
]
}
],
"permissions": [
"activeTab",
"scripting"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.producthunt.com\/*"
],
"js": [
"content.js"
]
}
],
"host_permissions": [
"https:\/\/www.producthunt.com\/*"
],
"action": {
"default_icon": {
"16": "\/icons\/icon-16.png",
"32": "\/icons\/icon-32.png",
"64": "\/icons\/icon-64.png",
"128": "\/icons\/icon-128.png"
},
"default_title": ""
},
"background": {
"service_worker": "background.js"
}
}