Palettes from Coolors

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

Τι είναι το Palettes from Coolors;

Το Palettes from Coolors είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rajesh64727, και η κύρια λειτουργία του είναι "Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Palettes from Coolors

Λήψη αρχείων επέκτασης Palettes from Coolors σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Palettes from Coolors Palettes from Coolors
ID mdfgfkplamgcjdoelfkobgdoopbflloc
Επίσημο URL https://chromewebstore.google.com/detail/palettes-from-coolors/mdfgfkplamgcjdoelfkobgdoopbflloc
Περιγραφή Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser.
Μέγεθος Αρχείου 12.64 KB
Αριθμός Εγκαταστάσεων 1,403
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-09-14
Ημερομηνία Δημοσίευσης 2020-08-16
Προγραμματιστής rajesh64727
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://rajesh64727.github.io/
Διεύθυνση URL της Σελίδας Βοήθειας https://rajesh64727.github.io/
URL της Σελίδας Πολιτικής Απορρήτου https://rajesh64727.github.io/privacy.html
Υποστηριζόμενες Γλώσσες 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"
    }
}