Reluminate

De-invert the luminance of entire pages or only images in Chrome for your already inverted screen.

Reluminateคืออะไร?

Reluminate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย drewnutter และคุณลักษณะหลักของมันคือ "De-invert the luminance of entire pages or only images in Chrome for your already inverted screen."

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

screenshot

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

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

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

                        This is a fork of Deluminate 0.3.2 with two changes.

First of all this extension has been designed to be used with entire screen inversion software such as NegativeScreen. If you're like me, you want everything to be black with white text, not just websites in Chrome. When your entire screen is inverted, it comes in handy to have Chrome re-invert some of the images in special ways. Deluminate does an OK job with this, but some of the rules don't work properly with an inverted screen. My new altered version called Reluminate changes how some of these inversion schemes work in order to make it work better with an already inverted screen.

The second change is less obvious, but, in my opinion, equally as significant. The scheme setting rules have been improved to apply domain rules to all subdomains that do not have rules already. For example, the rule for imgur.com will also apply to any subdomains of imgur.com such as user.imgur.com. However, if a rule is made for user.imgur.com, the imgur.com rule will not apply to that subdomain. In Deluminate (including the current version), there is no way to apply domain rules to subdomains, so this is a feature improvement in most cases.

Future plans:
+ Improved interactive tabbed interface, possibly an additional options page.
+ Optional to go between reluminate/deluminate mode. This will be for people who just want something to work like Deluminate, but to have the improved scheme rule handling that I have introduced.
+ More features and options for rule handling so you can customize how you want it to work including features such as allowing specific pages within a domain to be handled differently.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Reluminate Reluminate
ID ejfgkpndiembgmnikjbdkbiiobdmcgji
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reluminate/ejfgkpndiembgmnikjbdkbiiobdmcgji
คำอธิบาย De-invert the luminance of entire pages or only images in Chrome for your already inverted screen.
ขนาดไฟล์ 18.79 KB
จำนวนการติดตั้ง 315
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2014-07-04
วันที่เผยแพร่ 2014-07-04
คะแนน 3.67/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา drewnutter
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "Reluminate-128.png",
        "default_popup": "popup.html",
        "default_title": "Reluminate (Shift+F11)"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "Reluminate.css"
            ],
            "js": [
                "Reluminate.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "De-invert the luminance of entire pages or only images in Chrome for your already inverted screen.",
    "icons": {
        "128": "Reluminate-128.png"
    },
    "name": "Reluminate",
    "manifest_version": 2,
    "permissions": [
        "",
        "tabs"
    ],
    "version": "1.0"
}