Backseat Hunter
Comment on Product Hunt posts, even with no comment access.
Was ist Backseat Hunter?
Backseat Hunter ist eine Chrome-Erweiterung, die von oelmekki entwickelt wurde, und ihr Hauptmerkmal ist "Comment on Product Hunt posts, even with no comment access.".
Erweiterungsscreenshots
Backseat Hunter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Backseat Hunter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Backseat Hunter |
ID | dijkinlhigijhhcgjnocgnefgaolkhgm |
Offizielle URL | https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm |
Beschreibung | Comment on Product Hunt posts, even with no comment access. |
Dateigröße | 49.38 KB |
Installationsanzahl | 18 |
Aktuelle Version | 1.6 |
Letztes Update | 2015-11-20 |
Veröffentlichungsdatum | 2015-11-20 |
Entwickler | oelmekki |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |