Backseat Hunter
Comment on Product Hunt posts, even with no comment access.
Qu'est-ce que Backseat Hunter ?
Backseat Hunter est une extension Chrome développée par oelmekki, et sa fonction principale est "Comment on Product Hunt posts, even with no comment access.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Backseat Hunter
Téléchargez les fichiers d'extension Backseat Hunter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Backseat Hunter |
ID | dijkinlhigijhhcgjnocgnefgaolkhgm |
URL Officiel | https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm |
Description | Comment on Product Hunt posts, even with no comment access. |
Taille du Fichier | 49.38 KB |
Nombre d'Installations | 18 |
Version Actuelle | 1.6 |
Dernière Mise à Jour | 2015-11-20 |
Date de Publication | 2015-11-20 |
Développeur | oelmekki |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |