Backseat Hunter
Comment on Product Hunt posts, even with no comment access.
Cos'è Backseat Hunter?
Backseat Hunter è un'estensione di Chrome sviluppata da oelmekki, e la sua funzione principale è "Comment on Product Hunt posts, even with no comment access.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Backseat Hunter
Scarica i file di estensione Backseat Hunter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | dijkinlhigijhhcgjnocgnefgaolkhgm |
| URL Ufficiale | https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm |
| Descrizione | Comment on Product Hunt posts, even with no comment access. |
| Dimensione del File | 49.38 KB |
| Conteggio Installazioni | 18 |
| Versione Corrente | 1.6 |
| Ultimo Aggiornamento | 2015-11-20 |
| Data di Pubblicazione | 2015-11-20 |
| Sviluppatore | oelmekki |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
]
} | |