PaletteAble

This extension grabs color palettes from active webpages.

Vad är PaletteAble?

PaletteAble är en Chrome-tillägg utvecklad av jason.gresalfi, och dess huvudfunktion är "This extension grabs color palettes from active webpages.".

Tilläggsskärmbilder

screenshot

Ladda ner PaletteAble-förlängningens CRX-fil

Ladda ner PaletteAble-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn PaletteAble PaletteAble
ID ncggjbjnlddfacehhidbhnhcnjiengmk
Officiell webbadress https://chromewebstore.google.com/detail/paletteable/ncggjbjnlddfacehhidbhnhcnjiengmk
Beskrivning This extension grabs color palettes from active webpages.
Filstorlek 16.82 KB
Antal Installationer 232
Aktuell Version 1.0
Senast Uppdaterad 2017-02-22
Publiceringsdatum 2017-02-21
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare jason.gresalfi
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}