Backseat Hunter
Comment on Product Hunt posts, even with no comment access.
What is Backseat Hunter?
Backseat Hunter is a Chrome extension developed by oelmekki, and its main feature is "Comment on Product Hunt posts, even with no comment access.".
Extension Screenshots
Download Backseat Hunter Extension CRX File
Download Backseat Hunter 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
This extension allows anyone to discuss products on Product Hunt. When browsing a product page, you will see the extension appear in your url bar. Click it, and this will open a popup to comment the product on disqus, without leaving page.
Extension Basic Information
Name | Backseat Hunter |
ID | dijkinlhigijhhcgjnocgnefgaolkhgm |
Official URL | https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm |
Description | Comment on Product Hunt posts, even with no comment access. |
File Size | 49.38 KB |
Installation Count | 18 |
Current Version | 1.6 |
Last Updated | 2015-11-20 |
Publish Date | 2015-11-20 |
Developer | oelmekki |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Backseat Hunter", "version": "1.6", "manifest_version": 2, "description": "Comment on Product Hunt posts, even with no comment access.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab" ], "background": { "persistent": false, "scripts": [ "background_page\/main.js" ] }, "page_action": { "default_icon": { "38": "icon.png" }, "default_popup": "page_action\/main.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.producthunt.com\/*", "https:\/\/www.producthunt.com\/*" ], "js": [ "content_script\/main.js" ], "run_at": "document_end" } ] } |