WhatColor
The easiest way to identify colors on web pages.
O que é WhatColor?
WhatColor é uma extensão do Chrome desenvolvida por https://milhen.ch, e sua principal característica é "The easiest way to identify colors on web pages.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão WhatColor
Baixe arquivos de extensão WhatColor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This chrome extension has been written to demonstrate how to execute code within the current page after a chrome extension button is pressed, as discussed in my article; https://medium.com/p/f951315854e9 The basic premise is to parse all css stylesheet files that are linked to the current page and add a sidebar that lists all of the colors referenced within the stylesheets. # Caveats * For demo purposes only (supporting the atricle). * Inline colors are not displayed.
Informações Básicas da Extensão
Nome | WhatColor |
ID | begomjapoppkfcdcaindehabfglbfkcn |
URL Oficial | https://chromewebstore.google.com/detail/whatcolor/begomjapoppkfcdcaindehabfglbfkcn |
Descrição | The easiest way to identify colors on web pages. |
Tamanho do Arquivo | 32.14 KB |
Contagem de Instalações | 1,380 |
Versão Atual | 1.0.2 |
Última Atualização | 2022-09-08 |
Data de Publicação | 2013-10-29 |
Classificação | 2.00/5 Total de 6 Avaliações |
Desenvolvedor | https://milhen.ch |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://medium.com/p/f951315854e9 |
URL da Página de Ajuda | https://medium.com/p/f951315854e9 |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js", "asyncTracking.js" ] }, "browser_action": { "default_icon": "images\/dropper48.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*", "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "content.js", "content\/js\/plugins.js" ] } ], "description": "The easiest way to identify colors on web pages.", "icons": { "128": "images\/dropper128.png", "48": "images\/dropper48.png", "16": "images\/dropper16.png" }, "manifest_version": 2, "name": "WhatColor", "version": "1.0.2", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "content\/coordinator.js", "content\/*" ] } |