Backseat Hunter
Comment on Product Hunt posts, even with no comment access.
Co to jest Backseat Hunter?
Backseat Hunter to rozszerzenie Chrome opracowane przez oelmekki, a jego główną funkcją jest „Comment on Product Hunt posts, even with no comment access.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Backseat Hunter
Pobierz pliki rozszerzeń Backseat Hunter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Backseat Hunter |
ID | dijkinlhigijhhcgjnocgnefgaolkhgm |
Oficjalny URL | https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm |
Opis | Comment on Product Hunt posts, even with no comment access. |
Rozmiar pliku | 49.38 KB |
Liczba instalacji | 18 |
Aktualna Wersja | 1.6 |
Ostatnia Aktualizacja | 2015-11-20 |
Data Publikacji | 2015-11-20 |
Deweloper | oelmekki |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |