has_many collections

See which collections a product hunt post has been added to

什麼是has_many collections?

has_many collections是由oelmekki開發的Chrome擴展程式,該擴展的主要功能是“See which collections a product hunt post has been added to”。

擴展截圖

screenshot

下載has_many collections擴展crx文件

下載has_many collections擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension for Product Hunt users allows them to see, for any product, in which collections it has been added.

This is useful for makers, to see in which collections their product is referred, but also for all other users that may that way discover related products to the one they are currently looking at.

This is a new way to browse Product Hunt and explore its massive database.                    

擴展基本資訊

名稱 has_many collections has_many collections
ID acofjkhaidlhpdfmcooapmeoebfenggg
官方網址 https://chrome.google.com/webstore/detail/hasmany-collections/acofjkhaidlhpdfmcooapmeoebfenggg
簡介 See which collections a product hunt post has been added to
檔案大小 509 KB
安裝次數 16
目前版本 1.4
更新時間 2015-08-21
上架時間 2015-08-21
開發者 oelmekki
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "has_many collections",
    "version": "1.4",
    "manifest_version": 2,
    "description": "See which collections a product hunt post has been added to",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/www.producthunt.com\/",
        "http:\/\/www.producthunt.com\/"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background_page\/background.js",
            "background_page\/background\/api.js",
            "background_page\/background\/page_action_decider.js",
            "background_page\/main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/hunting-cabin.cc\/has_many_collections\/authorized*",
                "http:\/\/localhost:3000\/has_many_collections\/authorized*"
            ],
            "js": [
                "content_script\/jquery.js",
                "content_script\/url.js",
                "content_script\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_icon": {
            "38": "icon.png"
        },
        "default_popup": "page_action\/main.html"
    }
}