PDF Dark Theme

Applies a dark theme to your PDF viewer

PDF Dark Theme란 무엇입니까?

PDF Dark Theme은(는) skylake112에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Applies a dark theme to your PDF viewer"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

PDF Dark Theme 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}