Palettes from Coolors

Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser.

Was ist Palettes from Coolors?

Palettes from Coolors ist eine Chrome-Erweiterung, die von rajesh64727 entwickelt wurde, und ihr Hauptmerkmal ist "Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Palettes from Coolors-Erweiterungs-CRX-Datei herunterladen

Laden Sie Palettes from Coolors-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Hi,
Shows "coolors.co" color palettes in your web page.
It can be
-repositioned
-enabled/ disabled (by clicking on extension icon again)
-used to get new palettes by pressing 'space' key again and again.

This piece of work is meant not to harm any business interest of coolors.co and should be treated as compliment from a web developer.
In case of any conflict please let me know earliest.                    

Grundlegende Informationen zur Erweiterung

Name Palettes from Coolors Palettes from Coolors
ID mdfgfkplamgcjdoelfkobgdoopbflloc
Offizielle URL https://chromewebstore.google.com/detail/palettes-from-coolors/mdfgfkplamgcjdoelfkobgdoopbflloc
Beschreibung Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser.
Dateigröße 12.64 KB
Installationsanzahl 1,403
Aktuelle Version 1.0
Letztes Update 2021-09-14
Veröffentlichungsdatum 2020-08-16
Entwickler rajesh64727
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://rajesh64727.github.io/
Hilfeseite URL https://rajesh64727.github.io/
URL der Datenschutzrichtlinien-Seite https://rajesh64727.github.io/privacy.html
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Palettes from Coolors",
    "version": "1.0",
    "description": "Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser.",
    "browser_action": {
        "default_icon": {
            "128": "images\/icon128.png",
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "images\/icon128.png",
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png"
    }
}