Color Changer

Change a page's text, background, and link colors to your liking.

Color Changer क्या है?

Color Changer webextdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change a page's text, background, and link colors to your liking."।

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

screenshot

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

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

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

                        Summary:
Some sites have good information, but don't always choose the best colors for text, background, and links. With this extension, you can change a page's colors to make it more readable.

This extension isn't meant to be used as a global theme for the web and will not work well on all sites. In cases where it doesn't work, you could try creating a custom theme for that site with the Stylish extension.

How to use:
When you first install the extension, please refresh any tabs you have open so that the CSS styles from the extension are loaded on the page.

1. Click the Text, Background, or Link Color button. A border will appear around the button letting you know it's active.
2. Choose a color on the color wheel to change the color. You can see your changes live.
3. Now whenever you want to change the colors on a page, just click Change Colors. You can also change colors via a right-click context menu.

The extension will remember hosts where you changed colors so you don't have to click it again.

The Reset button at the bottom will reset the extension to default settings and resets all pages that were changed.

About the color wheel:
Colors are less saturated (more gray) near the center and more saturated (less gray) on the edge. There is a separate swatch that says "Gray", meaning 100% gray.

This extension doesn't use Google Analytics.

Please report any bugs to:
[email protected]

To view code:
https://github.com/rokit/web-extension-color-changer                    

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

नाम Color Changer Color Changer
ID nmdgidofjbajhphomaniiekgckpioifp
आधिकारिक URL https://chromewebstore.google.com/detail/color-changer/nmdgidofjbajhphomaniiekgckpioifp
विवरण Change a page's text, background, and link colors to your liking.
फ़ाइल का आकार 52.45 KB
स्थापना संख्या 4,374
वर्तमान संस्करण 4.0.9
अंतिम अपडेट 2023-08-16
प्रकाशन तिथि 2018-12-30
रेटिंग 4.17/5 कुल 23 रेटिंग्स
डेवलपर webextdev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Color Changer",
    "version": "4.0.9",
    "description": "Change a page's text, background, and link colors to your liking.",
    "icons": {
        "16": "icon-16.07b25762.png",
        "32": "icon-32.12de5702.png",
        "48": "icon-48.7a902821.png",
        "128": "icon-128.52534eb5.png"
    },
    "background": {
        "service_worker": "background.e1b78a1f.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.be709a5a.js"
            ],
            "css": []
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/icon.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.f6f9d9dd.html",
        "default_icon": {
            "16": "icon-16.07b25762.png",
            "32": "icon-32.12de5702.png",
            "48": "icon-48.7a902821.png",
            "128": "icon-128.52534eb5.png"
        }
    }
}