Stylebot

Change the appearance of the web instantly

Stylebot क्या है?

Stylebot https://stylebot.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change the appearance of the web instantly"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        You pick an element and choose any changes you want to make from the editor. You can change the font, color, margins, visibility and a lot more. You can also code CSS manually.

★ Easy to use: Pick and style elements using UI actions
★ Simple & Quick: Changes are saved instantly
★ Code editor - Write your own CSS 
★ Readability Mode - Make articles on any site readable by hiding non-essential page elements like sidebars, footers and ads. 
★ Grayscale Mode - Turn on grayscale to reduce strain from websites

Homepage: https://stylebot.dev/
Twitter: http://twitter.com/ahujaankit
Bug reports and feature requests: https://github.com/ankit/stylebot/issues

Privacy Policy:

Stylebot has never collected and will never collect any personal data, browsing history etc. The permission to access websites is to only let you customize the CSS for any webpage and automatically apply your CSS when you visit the webpage in the future.

In the future, Stylebot may collect browser version, platform name, user's settings (except website list or any other data which can help identify user). This information is needed for decision on implementing new features, removing unused features or suggesting default settings for new users. It will happen only with your permission.                    

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

नाम Stylebot Stylebot
ID oiaejidbmkiecgbjeifoejpgmdaleoha
आधिकारिक URL https://chromewebstore.google.com/detail/stylebot/oiaejidbmkiecgbjeifoejpgmdaleoha
विवरण Change the appearance of the web instantly
फ़ाइल का आकार 3.45 MB
स्थापना संख्या 275,394
वर्तमान संस्करण 3.1.3
अंतिम अपडेट 2022-07-25
प्रकाशन तिथि 2020-06-23
रेटिंग 4.30/5 कुल 1579 रेटिंग्स
डेवलपर https://stylebot.dev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://stylebot.dev/
सहायता पृष्ठ URL https://github.com/ankit/stylebot/issues
समर्थित भाषाएँ de,en,en-GB,en-US,fr,es,it,pt-BR,pt-PT,ru,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stylebot",
    "version": "3.1.3",
    "author": "Ankit Ahuja",
    "description": "__MSG_extension_description__",
    "default_locale": "en",
    "background": {
        "scripts": [
            "background\/index.js"
        ]
    },
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "js": [
                "editor\/index.js"
            ],
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*\/*.xml"
            ],
            "run_at": "document_idle"
        },
        {
            "all_frames": true,
            "js": [
                "inject-css\/index.js"
            ],
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*\/*.xml"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "24": "img\/icon24.png",
            "32": "img\/icon32.png"
        },
        "default_title": "Stylebot",
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "identity",
        "contextMenus",
        "unlimitedStorage",
        "https:\/\/drive.google.com\/*",
        "https:\/\/www.googleapis.com\/*",
        "https:\/\/fonts.googleapis.com\/*"
    ],
    "web_accessible_resources": [
        "editor\/index.css",
        "readability\/index.css",
        "monaco-editor\/*"
    ]
}