Backseat Hunter

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

Backseat Hunter क्या है?

Backseat Hunter oelmekki द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Comment on Product Hunt posts, even with no comment access."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Backseat Hunter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Backseat Hunter Backseat Hunter
ID dijkinlhigijhhcgjnocgnefgaolkhgm
आधिकारिक URL https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm
विवरण Comment on Product Hunt posts, even with no comment access.
फ़ाइल का आकार 49.38 KB
स्थापना संख्या 18
वर्तमान संस्करण 1.6
अंतिम अपडेट 2015-11-20
प्रकाशन तिथि 2015-11-20
डेवलपर oelmekki
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
        }
    ]
}