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
电子邮箱 [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"
    ]
}