Obscura

Window tint for the web.

Obscuraคืออะไร?

Obscura เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex Shroyer และคุณลักษณะหลักของมันคือ "Window tint for the web."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Obscura

ดาวน์โหลดไฟล์ส่วนขยาย Obscura ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}