Obscura

Window tint for the web.

Obscura란 무엇입니까?

Obscura은(는) Alex Shroyer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Window tint for the web."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Obscura 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Obscura reduces blue light from web pages, making it easier to fall asleep.

Simple controls: on/off button, and a color picker.

Respects your privacy: no trackers, no ads.

Permissions: this type of extension requires the "can read and change your data" permission, even though it does not actually read any of your data.  That's why I wrote this extension, and it's why I try to keep the code short - so anyone can look at the code and be sure it is not doing anything nefarious.

Note: that this type of extension does not work on the Chrome Web Store pages, you'll have to visit a normal page to see the effect.

You're encouraged to examine and audit the code yourself, it's relatively short at 58 total lines of JavaScript.

Source code available (MIT License): https://gitlab.com/hoosieree/chrome-extension-obscura

Changelog (starting with version 3.1, see gitlab commit messages for more detail).
3.1: Chrome fixed their issue with PDFs not playing nice with extensions, so I was able to remove some special case code.  Nice when an update is smaller than the previous version.
3.2: bugfix - typo caused entire extension to not work.  Solution: remove typo.
3.3: Remove debug console messages, remove unused code, remove div id.
3.3.1: Work around some websites not respecting the "hidden" attribute of obscura's div, and as a result made the code shorter and simpler. Win-win!                    

확장 프로그램 기본 정보

이름 Obscura Obscura
ID nhlkgnilpmpddehjcegjpofpiiaomnen
공식 URL https://chromewebstore.google.com/detail/obscura/nhlkgnilpmpddehjcegjpofpiiaomnen
설명 Window tint for the web.
파일 크기 25.35 KB
설치 횟수 21
현재 버전 3.3.1
최근 업데이트 2020-03-27
출시 날짜 2020-03-23
평점 5.00/5 총 1 개의 평점
개발자 Alex Shroyer
결제 유형 free
확장 프로그램 웹 사이트 https://gitlab.com/hoosieree/chrome-extension-obscura
도움말 페이지 URL https://gitlab.com/hoosieree/chrome-extension-obscura/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Obscura",
    "description": "Window tint for the web.",
    "version": "3.3.1",
    "icons": {
        "128": "icons\/icon-128.png",
        "64": "icons\/icon-64.png",
        "48": "icons\/icon-48.png",
        "32": "icons\/icon-32.png"
    },
    "author": "Alex Shroyer",
    "browser_action": {
        "default_title": "obscura",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ]
}