PDF Dark Theme
Applies a dark theme to your PDF viewer
PDF Dark Theme क्या है?
PDF Dark Theme skylake112 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Applies a dark theme to your PDF viewer"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PDF Dark Theme एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
⚠️IMPORTANT⚠️: This extension won't work until you give it permission to access file URLs. You can do so by heading to your browser's extension page and enabling file access there. ⚠️IMPORTANT⚠️: This extension will only work on PDFs that you have installed locally on your computer. If you want it to work on PDFs you find online as well i.e. http://www.africau.edu/images/default/sample.pdf, I recommend you use Arshpreet Buttar's DarkPDF extension instead @ https://chrome.google.com/webstore/detail/darkpdf/cfemcmeknmapecneeeaajnbhhgfgkfhp?hl=en. ⚠️IMPORTANT⚠️: Your PDF viewer should be set to light theme for this extension to work. If you try to open up a light PDF document in a dark PDF viewer, this extension is going to invert the colors for both of them. Leaving you with a dark PDF document and a light PDF viewer. You need to have both of a light PDF document and a light PDF viewer for the desired results. This extension is a fork of Buttar's extension (from above) except... 1. It's one file only ```js let darkPdfDivStyles = ` pointer-events: none; width: 100vw; height: 100vh; background-color: #bfbfbf; mix-blend-mode: difference; z-index: 1; `; let darkPdfDiv = document.createElement('div'); darkPdfDiv.setAttribute("style", darkPdfDivStyles); document.body.appendChild(darkPdfDiv) ```
एक्सटेंशन की मूल जानकारी
नाम | PDF Dark Theme |
ID | dhhcfpbikhlkoicblakagcmfpnnkhkpl |
आधिकारिक URL | https://chromewebstore.google.com/detail/pdf-dark-theme/dhhcfpbikhlkoicblakagcmfpnnkhkpl |
विवरण | Applies a dark theme to your PDF viewer |
फ़ाइल का आकार | 19.27 KB |
स्थापना संख्या | 1,000 |
वर्तमान संस्करण | 1.03 |
अंतिम अपडेट | 2023-03-17 |
प्रकाशन तिथि | 2022-06-15 |
रेटिंग | 3.00/5 कुल 1 रेटिंग्स |
डेवलपर | skylake112 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/chris56974/pdf-dark-theme |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "PDF Dark Theme", "description": "Applies a dark theme to your PDF viewer", "version": "1.03", "icons": { "16": "imgs\/dark16.png", "32": "imgs\/dark32.png", "48": "imgs\/dark48.png", "128": "imgs\/dark128.png" }, "action": { "default_icon": { "16": "imgs\/dark16.png", "32": "imgs\/dark32.png", "48": "imgs\/dark48.png", "128": "imgs\/dark128.png" } }, "content_scripts": [ { "matches": [ "file:\/\/*.pdf" ], "run_at": "document_idle", "js": [ "content-script.js" ] } ], "host_permissions": [ "file:\/\/*.pdf" ] } |