Palettes from Coolors

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

Co to jest Palettes from Coolors?

Palettes from Coolors to rozszerzenie Chrome opracowane przez rajesh64727, a jego główną funkcją jest „Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Palettes from Coolors

Pobierz pliki rozszerzeń Palettes from Coolors w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Palettes from Coolors Palettes from Coolors
ID mdfgfkplamgcjdoelfkobgdoopbflloc
Oficjalny URL https://chromewebstore.google.com/detail/palettes-from-coolors/mdfgfkplamgcjdoelfkobgdoopbflloc
Opis Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser.
Rozmiar pliku 12.64 KB
Liczba instalacji 1,403
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-09-14
Data Publikacji 2020-08-16
Deweloper rajesh64727
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://rajesh64727.github.io/
Adres URL Strony Pomocy https://rajesh64727.github.io/
Adres URL Strony Polityki Prywatności https://rajesh64727.github.io/privacy.html
Obsługiwane Języki 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"
    }
}