PicPicker

A picture picker

PicPickerとは何ですか?

PicPickerはwalnutzhangによって開発されたChromeの拡張機能で、その主な機能は「A picture picker」です。

PicPicker拡張機能のCRXファイルをダウンロード

PicPicker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A Chrome extension to list all the pictures of a page, including imgs and backgrounds. Use it if you want to download pictures that you can't direct right click and save.                    

拡張機能の基本情報

名前 PicPicker PicPicker
ID jlchgfmpgjodcofcneekkhkjibjpjlia
公式URL https://chromewebstore.google.com/detail/picpicker/jlchgfmpgjodcofcneekkhkjibjpjlia
説明 A picture picker
ファイルサイズ 17.8 KB
インストール数 118
現在のバージョン 0.1
最終更新日 2016-12-05
公開日 2016-12-05
評価 5.00/5 合計 1 レビュー
開発者 walnutzhang
支払い方法 free
拡張機能のウェブサイト https://github.com/walnutzhang/PicPicker
ヘルプページのURL https://github.com/walnutzhang/PicPicker
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PicPicker",
    "description": "A picture picker",
    "version": "0.1",
    "author": "WalnutZhang",
    "homepage_url": "https:\/\/github.com\/walnutzhang\/PicPicker",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png"
    },
    "browser_action": {
        "default_icon": "icon48.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "content_styles.css"
            ],
            "js": [
                "zepto.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "content_styles.css"
    ]
}