Product Dark
Turn Product Hunt dark for nighttime hunting.
O que é Product Dark?
Product Dark é uma extensão do Chrome desenvolvida por https://derekbtw.com, e sua principal característica é "Turn Product Hunt dark for nighttime hunting.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Product Dark
Baixe arquivos de extensão Product Dark 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
New in 3.0.1 - Made it so profile headers are shown - Text color changed to white in profile settings - Other color improvements throughout the site
Informações Básicas da Extensão
Nome | Product Dark |
ID | nbppndomekcebmldijnlmlmhidepkmbg |
URL Oficial | https://chromewebstore.google.com/detail/product-dark/nbppndomekcebmldijnlmlmhidepkmbg |
Descrição | Turn Product Hunt dark for nighttime hunting. |
Tamanho do Arquivo | 699 KB |
Contagem de Instalações | 68 |
Versão Atual | 3.0.1 |
Última Atualização | 2017-08-21 |
Data de Publicação | 2017-08-21 |
Classificação | 2.50/5 Total de 4 Avaliações |
Desenvolvedor | https://derekbtw.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://derekbtw.com |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Product Dark", "version": "3.0.1", "description": "Turn Product Hunt dark for nighttime hunting.", "manifest_version": 2, "permissions": [ "https:\/\/producthunt.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.producthunt.com\/*" ], "js": [ "product-dark.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "page": "background.html", "persistent": false }, "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "Toggle Dark Theme" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ "product-dark.css" ] } |