DarkPDF
Adds a dark mode to the standard Chrome PDF-Viewer
Wat is DarkPDF?
DarkPDF is een Chrome-extensie ontwikkeld door Mano176, en de belangrijkste functie is "Adds a dark mode to the standard Chrome PDF-Viewer".
Extensie Screenshots
Download het CRX-bestand van de extensie DarkPDF
Download DarkPDF-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
The dark mode can be turned on and off for each PDF individually Basisinformatie over de Extensie
| Naam | |
| ID | jhlfcnmbhnelhkfoicmfkdhbhaonadoh |
| Officiële URL | https://chromewebstore.google.com/detail/darkpdf/jhlfcnmbhnelhkfoicmfkdhbhaonadoh |
| Beschrijving | Adds a dark mode to the standard Chrome PDF-Viewer |
| Bestandsgrootte | 14.38 KB |
| Aantal Installaties | 300 |
| Huidige Versie | 1.1 |
| Laatst Bijgewerkt | 2022-11-05 |
| Publicatiedatum | 2022-11-01 |
| Beoordeling | 4.88/5 Totaal 8 Beoordelingen |
| Ontwikkelaar | Mano176 |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "DarkPDF",
"version": "1.1",
"description": "Adds a dark mode to the standard Chrome PDF-Viewer",
"manifest_version": 3,
"permissions": [
"storage"
],
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*.pdf",
"file:\/\/*.pdf"
],
"js": [
"script.js"
],
"css": [
"style.css"
]
}
]
} | |