Backseat Hunter
Comment on Product Hunt posts, even with no comment access.
Hvad er Backseat Hunter?
Backseat Hunter er en Chrome-udvidelse udviklet af oelmekki, og dens hovedfunktion er "Comment on Product Hunt posts, even with no comment access.".
Udvidelsesskærmbilleder
Download Backseat Hunter-udvidelses-CRX-fil
Download Backseat Hunter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | dijkinlhigijhhcgjnocgnefgaolkhgm |
| Officiel URL | https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm |
| Beskrivelse | Comment on Product Hunt posts, even with no comment access. |
| Filstørrelse | 49.38 KB |
| Antal Installationer | 18 |
| Nuværende Version | 1.6 |
| Senest Opdateret | 2015-11-20 |
| Udgivelsesdato | 2015-11-20 |
| Udvikler | oelmekki |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
]
} | |