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
公式URL 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"
    }
}