Product Dark
Turn Product Hunt dark for nighttime hunting.
What is Product Dark?
Product Dark is a Chrome extension developed by https://derekbtw.com, and its main feature is "Turn Product Hunt dark for nighttime hunting.".
Extension Screenshots
Download Product Dark Extension CRX File
Download Product Dark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
New in 3.0.1 - Made it so profile headers are shown - Text color changed to white in profile settings - Other color improvements throughout the site
Extension Basic Information
Name | Product Dark |
ID | nbppndomekcebmldijnlmlmhidepkmbg |
Official URL | https://chromewebstore.google.com/detail/product-dark/nbppndomekcebmldijnlmlmhidepkmbg |
Description | Turn Product Hunt dark for nighttime hunting. |
File Size | 699 KB |
Installation Count | 68 |
Current Version | 3.0.1 |
Last Updated | 2017-08-21 |
Publish Date | 2017-08-21 |
Rating | 2.50/5 Total 4 Ratings |
Developer | https://derekbtw.com |
[email protected] | |
Payment Type | free |
Extension Website | http://derekbtw.com |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Product Dark", "version": "3.0.1", "description": "Turn Product Hunt dark for nighttime hunting.", "manifest_version": 2, "permissions": [ "https:\/\/producthunt.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.producthunt.com\/*" ], "js": [ "product-dark.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "page": "background.html", "persistent": false }, "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "Toggle Dark Theme" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ "product-dark.css" ] } |