Palettes for Tumblr

Colour scheme manager for Tumblr

Cos'è Palettes for Tumblr?

Palettes for Tumblr è un'estensione di Chrome sviluppata da April Sylph, e la sua funzione principale è "Colour scheme manager for Tumblr".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Palettes for Tumblr

Scarica i file di estensione Palettes for Tumblr in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Features:
• Create your own palette, or choose from the built-in options
• Change the page font independently of your chosen palette
• Adjust the base font size

Usage:
Once you've installed the extension, click the extension icon in the browser toolbar to open its configuration.

This extension only affects pages updated to use Tumblr's new web interface. This means Tumblr pages that do not usually offer the "Change Palette" button will not be affected.                    

Informazioni di Base sull'Estensione

Nome Palettes for Tumblr Palettes for Tumblr
ID kgllgjbdbkempofinoadnlleigmgppfm
URL Ufficiale https://chromewebstore.google.com/detail/palettes-for-tumblr/kgllgjbdbkempofinoadnlleigmgppfm
Descrizione Colour scheme manager for Tumblr
Dimensione del File 27.5 KB
Conteggio Installazioni 1,083
Versione Corrente 1.0.2
Ultimo Aggiornamento 2023-02-14
Data di Pubblicazione 2022-03-02
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore April Sylph
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/AprilSylph/Palettes-for-Tumblr#readme
URL della Pagina di Aiuto https://github.com/AprilSylph/Palettes-for-Tumblr/issues
URL della Pagina della Politica sulla Privacy https://github.com/AprilSylph/AprilSylph/blob/master/PRIVACY.md
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Palettes for Tumblr",
    "version": "1.0.2",
    "description": "Colour scheme manager for Tumblr",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_popup": "browser_action\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.tumblr.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "lib\/browser-polyfill.min.js",
                "main.js"
            ],
            "css": [
                "peepr_shadow.css"
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/AprilSylph\/Palettes-for-Tumblr#readme",
    "options_ui": {
        "page": "options\/ui.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "palettes.json",
        "paletteData.json"
    ],
    "minimum_chrome_version": "38",
    "browser_specific_settings": {
        "gecko": {
            "strict_min_version": "59.0a2"
        }
    }
}