Retheme

Enjoy the web without distractions. Removes ads and other annoying content from popular sites.

Retheme क्या है?

Retheme https://retheme.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enjoy the web without distractions. Removes ads and other annoying content from popular sites."।

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

screenshot

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

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

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

                        This extension "themes" high-traffic sites to remove unwanted ads, popups, and other cluttering elements from the content.  Pin the extension to easily request a theme for your favorite sites, but otherwise, this is an install-and-forget extension that improves your daily viewing experience.

Privacy Policy:

- We do not collect any user information whatsoever.
- We do not sell anything - to you, or any other party.


Suggested Use:

Retheme operates in a very different way from traditional ad-blockers, therefore we recommend using it WITH one of those.  They block many 3rd-party scripts, speeding up the overall page load, while Retheme *only* tackles the visual layer, but can improve layout issues, remove gaps, etc.  They both have their uses, so run both!                    

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

नाम Retheme Retheme
ID jcmjgalhippcbbefclmckbcnacpjoeip
आधिकारिक URL https://chromewebstore.google.com/detail/retheme/jcmjgalhippcbbefclmckbcnacpjoeip
विवरण Enjoy the web without distractions. Removes ads and other annoying content from popular sites.
फ़ाइल का आकार 208 KB
स्थापना संख्या 312
वर्तमान संस्करण 0.3.0
अंतिम अपडेट 2023-02-08
प्रकाशन तिथि 2022-04-01
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर https://retheme.org
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://retheme.org
सहायता पृष्ठ URL https://github.com/kwhitley/retheme-site/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Retheme",
    "description": "Enjoy the web without distractions. Removes ads and other annoying content from popular sites.",
    "version": "0.3.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*\/*.xml",
                "*:\/\/extensions\/*"
            ],
            "type": "module",
            "js": [
                "extension\/inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "extension\/background.js",
        "type": "module",
        "exclude_matches": [
            "*:\/\/*\/*.xml",
            "*:\/\/extensions\/*"
        ]
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": ".\/icons\/re.logo.16x16.png",
            "32": ".\/icons\/re.logo.32x32.png",
            "48": ".\/icons\/re.logo.48x48.png",
            "128": ".\/icons\/re.logo.128x128.png"
        }
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                ".\/icons\/re.logo.32x32.png"
            ]
        }
    ],
    "icons": {
        "16": ".\/icons\/re.logo.16x16.png",
        "32": ".\/icons\/re.logo.32x32.png",
        "48": ".\/icons\/re.logo.48x48.png",
        "128": ".\/icons\/re.logo.128x128.png"
    },
    "host_permissions": [
        ""
    ]
}