Backseat Hunter
Comment on Product Hunt posts, even with no comment access.
Wat is Backseat Hunter?
Backseat Hunter is een Chrome-extensie ontwikkeld door oelmekki, en de belangrijkste functie is "Comment on Product Hunt posts, even with no comment access.".
Extensie Screenshots
Download het CRX-bestand van de extensie Backseat Hunter
Download Backseat Hunter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | dijkinlhigijhhcgjnocgnefgaolkhgm |
| Officiële URL | https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm |
| Beschrijving | Comment on Product Hunt posts, even with no comment access. |
| Bestandsgrootte | 49.38 KB |
| Aantal Installaties | 18 |
| Huidige Versie | 1.6 |
| Laatst Bijgewerkt | 2015-11-20 |
| Publicatiedatum | 2015-11-20 |
| Ontwikkelaar | oelmekki |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
]
} | |