Product Dark
Turn Product Hunt dark for nighttime hunting.
Cos'è Product Dark?
Product Dark è un'estensione di Chrome sviluppata da https://derekbtw.com, e la sua funzione principale è "Turn Product Hunt dark for nighttime hunting.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Product Dark
Scarica i file di estensione Product Dark 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
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | nbppndomekcebmldijnlmlmhidepkmbg |
| URL Ufficiale | https://chromewebstore.google.com/detail/product-dark/nbppndomekcebmldijnlmlmhidepkmbg |
| Descrizione | Turn Product Hunt dark for nighttime hunting. |
| Dimensione del File | 699 KB |
| Conteggio Installazioni | 68 |
| Versione Corrente | 3.0.1 |
| Ultimo Aggiornamento | 2017-08-21 |
| Data di Pubblicazione | 2017-08-21 |
| Valutazione | 2.50/5 Totale 4 Valutazioni |
| Sviluppatore | https://derekbtw.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://derekbtw.com |
| Lingue Supportate | 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"
]
} | |