Auto Invert!

Toggle invert brightness on every website and its tab when you prefer to reduce strain on eyes and improve readability at night!

Auto Invert!란 무엇입니까?

Auto Invert!은(는) rcecchini.ds에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Toggle invert brightness on every website and its tab when you prefer to reduce strain on eyes and improve readability at night!"입니다.

확장 프로그램 스크린샷

screenshot

Auto Invert! 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Bring automatically the dark mode in every website you want in your browser! ☯️🖤

Enable the dark mode also (and especially) where it's not supported with just a click, and just on text and background, not images or videos! Just click on the "A" icon of Auto Invert! extension and enable (or disable) the feature when you want, for every tab of the website.

The extension works inverting the brightness, but not the colors. So you can also achieve the opposite effect and make lighter a dark website 💡

⚠️⚠️ 29 Sep 23: New release 1.1.9 ⚠️⚠️
Try it now!                    

확장 프로그램 기본 정보

이름 Auto Invert! Auto Invert!
ID pfkofdhiaclpognkfgkoeipepalkgfal
공식 URL https://chromewebstore.google.com/detail/auto-invert/pfkofdhiaclpognkfgkoeipepalkgfal
설명 Toggle invert brightness on every website and its tab when you prefer to reduce strain on eyes and improve readability at night!
파일 크기 88.59 KB
설치 횟수 117
현재 버전 1.1.9
최근 업데이트 2023-09-30
출시 날짜 2022-08-30
평점 5.00/5 총 1 개의 평점
개발자 rcecchini.ds
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/cekkr/AutoInvert-Chrome
도움말 페이지 URL https://github.com/cekkr/AutoInvert-Chrome/discussions
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": false,
            "css": [
                "inject.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": false,
            "js": [
                "thirds\/jquery-3.6.1.min.js",
                "contentScript.js"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/off.png",
        "default_title": "Toggle Auto Invert!"
    },
    "description": "Toggle invert brightness on every website and its tab when you prefer to reduce strain on eyes and improve readability at night!",
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png"
    },
    "manifest_version": 3,
    "name": "Auto Invert!",
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        ""
    ],
    "version": "1.1.9",
    "author": "cekkr",
    "homepage_url": "https:\/\/github.com\/cekkr\/autoinvert-chrome"
}