PaletteAble

This extension grabs color palettes from active webpages.

PaletteAbleとは何ですか?

PaletteAbleはjason.gresalfiによって開発されたChromeの拡張機能で、その主な機能は「This extension grabs color palettes from active webpages.」です。

拡張機能のスクリーンショット

screenshot

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

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

拡張機能の使用方法

                        This is a simple extension that will pull all background colors off of an active Chrome tab and generate a pop-up with a pleasing color palette. Hover over the color swatches for the rgba values and click the cloud icon to download a CSS-esque palette export.

New features and improvements will be forthcoming and this extension will always be free!                    

拡張機能の基本情報

名前 PaletteAble PaletteAble
ID ncggjbjnlddfacehhidbhnhcnjiengmk
公式URL https://chromewebstore.google.com/detail/paletteable/ncggjbjnlddfacehhidbhnhcnjiengmk
説明 This extension grabs color palettes from active webpages.
ファイルサイズ 16.82 KB
インストール数 232
現在のバージョン 1.0
最終更新日 2017-02-22
公開日 2017-02-21
評価 3.67/5 合計 3 レビュー
開発者 jason.gresalfi
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PaletteAble",
    "description": "This extension grabs color palettes from active webpages.",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "download.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Get me some colors!",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}