Backseat Hunter

Comment on Product Hunt posts, even with no comment access.

¿Qué es Backseat Hunter?

Backseat Hunter es una extensión de Chrome desarrollada por oelmekki, y su función principal es "Comment on Product Hunt posts, even with no comment access.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Backseat Hunter

Descarga archivos de extensión Backseat Hunter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Backseat Hunter Backseat Hunter
ID dijkinlhigijhhcgjnocgnefgaolkhgm
URL Oficial https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm
Descripción Comment on Product Hunt posts, even with no comment access.
Tamaño del Archivo 49.38 KB
Cantidad de Instalaciones 18
Versión Actual 1.6
Última Actualización 2015-11-20
Fecha de Publicación 2015-11-20
Desarrollador oelmekki
Tipo de Pago free
Idiomas Soportados 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"
        }
    ]
}