Tricky Chaos Kit

Make web less distracting with a key. Press F2 to switch to dark mode anywhere or to enable custom style in certain places. IDDQD.

Tricky Chaos Kit क्या है?

Tricky Chaos Kit https://trickychaos.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make web less distracting with a key. Press F2 to switch to dark mode anywhere or to enable custom style in certain places. IDDQD."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tricky Chaos Kit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Click on extension or press F2 to toggle "dark mode" for bright websites. On certain websites such as Trello, YouTube or PH it will instead enable a custom style hiding most elements & making web less distracting.

Trello Card View:
- Makes background opaque
- Hides everything except for checklists and description
- Adds small "new checklist" button
- Turns "hide checked items" on each checklist by default
- Adds checklist item marking if it ends with "!" or "?"
- Adds solo / mute buttons on checklists
- Adds multimute button
- Adds "toggle all" button to checklists
- Replaces text on checklist buttons with icons
Trello Board View:
- Simplifies cards as much as possible
- Removes most of the HUD elements

YouTube List Views:
- Side bar is hidden by default
- Top bar simplified
- Grid video view heavily simfilified & unified between the screens
YouTube Video View:
- Hides most of the elements on the screen (comments, related, meta,..)
- Simplifies title and action buttons (like, dislike, share, add) 

Google Keep Card View:
- Makes background opaque
- Hides top bar
- Hides non-pinned cards

Pastebin:
- Hides a lot of UI
- Adds post builder & drafts
- Adds quick copy button

Have fun!

To be continued...                    

एक्सटेंशन की मूल जानकारी

नाम Tricky Chaos Kit Tricky Chaos Kit
ID poadpmgjfkflfgpaeklfiiolcgciilpf
आधिकारिक URL https://chromewebstore.google.com/detail/tricky-chaos-kit/poadpmgjfkflfgpaeklfiiolcgciilpf
विवरण Make web less distracting with a key. Press F2 to switch to dark mode anywhere or to enable custom style in certain places. IDDQD.
फ़ाइल का आकार 738 KB
स्थापना संख्या 28
वर्तमान संस्करण 2.5.1
अंतिम अपडेट 2023-08-30
प्रकाशन तिथि 2020-02-22
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर https://trickychaos.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ryan-ash/tricky-chaos-kit
सहायता पृष्ठ URL https://t.me/ryan_ash
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tricky Chaos Kit",
    "description": "Make web less distracting with a key. Press F2 to switch to dark mode anywhere or to enable custom style in certain places. IDDQD.",
    "version": "2.5.1",
    "author": "Ryan Ash",
    "icons": {
        "16": "icons\/16_off.png",
        "32": "icons\/32_off.png",
        "48": "icons\/48_off.png",
        "128": "icons\/128_off.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16_off.png",
            "32": "icons\/32_off.png",
            "48": "icons\/48_off.png",
            "128": "icons\/128_off.png"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "css": [
                "css\/font-awesome.min.css",
                "css\/trello.css"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/jquery.enhanced.cookie.js",
                "js\/purge.js",
                "js\/trello-addons.js"
            ]
        },
        {
            "matches": [
                "https:\/\/youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "css\/youtube.css"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/jquery.enhanced.cookie.js",
                "js\/purge.js",
                "js\/youtube-addons.js"
            ]
        },
        {
            "matches": [
                "https:\/\/keep.google.com\/*"
            ],
            "css": [
                "css\/keep.css"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/jquery.enhanced.cookie.js",
                "js\/purge.js"
            ]
        },
        {
            "matches": [
                "https:\/\/pornhub.com\/*",
                "https:\/\/*.pornhub.com\/*"
            ],
            "css": [
                "css\/font-awesome.min.css",
                "css\/ph.css"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/jquery.enhanced.cookie.js",
                "js\/purge.js"
            ]
        },
        {
            "matches": [
                "https:\/\/pastebin.com\/*",
                "https:\/\/*.pastebin.com\/*"
            ],
            "css": [
                "css\/font-awesome.min.css",
                "css\/pastebin.css",
                "css\/quill.bubble.css"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/jquery.enhanced.cookie.js",
                "js\/text-template.js",
                "js\/text-template-markup.js",
                "js\/quill.min.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "https:\/\/trello.com\/*",
                "https:\/\/youtube.com\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/keep.google.com\/*",
                "https:\/\/pornhub.com\/*",
                "https:\/\/*.pornhub.com\/*",
                "https:\/\/pastebin.com\/*"
            ],
            "css": [
                "css\/invert.css"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/jquery.enhanced.cookie.js",
                "js\/purge.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "fonts\/fontawesome-webfont.eot",
        "fonts\/fontawesome-webfont.svg",
        "fonts\/fontawesome-webfont.ttf",
        "fonts\/fontawesome-webfont.woff",
        "fonts\/fontawesome-webfont.woff2",
        "fonts\/FontAwesome.otf"
    ]
}