Themify
View the colors of a website
Cos'è Themify?
Themify è un'estensione di Chrome sviluppata da https://tonybatts.com, e la sua funzione principale è "View the colors of a website".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Themify
Scarica i file di estensione Themify 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
Need some inspiration for your next project? Quickly and easily see and copy colors from your favorite websites. Are you a Web Developer? Great! Configure Themify to output colors in Hex or RGB for code friendly pasting. Are you a Designer? Neato! Configure Themify to output colors in Hex without the "#" for Photoshop friendly pasting. Do you just like colors? You, I like you. Configure Themify to output whatever your heart desires. Need the color of that one pixel? Use the new Eye Dropper feature! Works for images, videos, and anything else on your screen. Keyboard shortcuts: Open Themify: Windows: Alt+f Mac: Option+f Eye Dropper: Windows: Alt+d Mac: Option+f
Informazioni di Base sull'Estensione
Nome | Themify |
ID | depilomfokpbdjhmagangenafijekkjc |
URL Ufficiale | https://chromewebstore.google.com/detail/themify/depilomfokpbdjhmagangenafijekkjc |
Descrizione | View the colors of a website |
Dimensione del File | 28.71 KB |
Conteggio Installazioni | 428 |
Versione Corrente | 2.53 |
Ultimo Aggiornamento | 2022-04-21 |
Data di Pubblicazione | 2021-05-16 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://tonybatts.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.tonybatts.com/ |
URL della Pagina di Aiuto | https://www.tonybatts.com#contact |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Themify", "version": "2.53", "description": "View the colors of a website", "short_name": "View the colors of a website", "permissions": [ "activeTab", "storage" ], "browser_action": { "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+F", "mac": "Alt+F" } }, "eye-dropper": { "suggested_key": { "default": "Alt+D", "mac": "Alt+D" }, "description": "Opens eyedropper" } } } |