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
官方網址 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
電子郵箱 [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"
    ]
}