PaletteAble

This extension grabs color palettes from active webpages.

What is PaletteAble?

PaletteAble is a Chrome extension developed by jason.gresalfi, and its main feature is "This extension grabs color palettes from active webpages.".

Extension Screenshots

screenshot

Download PaletteAble Extension CRX File

Download PaletteAble extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name PaletteAble PaletteAble
ID ncggjbjnlddfacehhidbhnhcnjiengmk
Official URL https://chromewebstore.google.com/detail/paletteable/ncggjbjnlddfacehhidbhnhcnjiengmk
Description This extension grabs color palettes from active webpages.
File Size 16.82 KB
Installation Count 232
Current Version 1.0
Last Updated 2017-02-22
Publish Date 2017-02-21
Rating 3.67/5 Total 3 Ratings
Developer jason.gresalfi
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}