Calmer Internet

Provides a calmer internet experience. Removes comments and various recommendation elements from Twitter, YouTube, Instagram.

Calmer Internet क्या है?

Calmer Internet https://lukebriggs.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides a calmer internet experience. Removes comments and various recommendation elements from Twitter, YouTube, Instagram."।

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

screenshot
screenshot
screenshot

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

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

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

                        Many sites are designed to suck time away from you by showing you things that are interesting enough to keep you scrolling but offers no value.

This extension strips away all these comments, recommendations and promotions leaving you with just the content you have specifically asked to receive. 

The extension removes the following elements (all of these can be turned back on if you so wish):

YouTube:
- Home links
- Explore links
- Trending link (mobile)
- Comments
- Redirect home page to subscriptions
- Watch next section
- Live chat
- End screen video wall
- "People also watched" in searches

Twitter elements:
- Trending bar
- Explore links
- 'Who to Follow' bar
- Topics bar

Instagram elements:
- Explore links
- Explore people links
- Comments below posts in feed
- Comments in posts

Release Notes:
* v1.1.1 - Add support for non-english Twitter
* v1.1.2 - Fix redirect from music.youtube.com. This site is now accessible
* v1.2.0 - Add ability to remove "People also watched" and other suggestions from YouTube searches
* v1.3.0 - Add ability to remove YouTube 'shorts' page                    

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

नाम Calmer Internet Calmer Internet
ID eafehkefjngkemmnfplgddemgpcjlldb
आधिकारिक URL https://chromewebstore.google.com/detail/calmer-internet/eafehkefjngkemmnfplgddemgpcjlldb
विवरण Provides a calmer internet experience. Removes comments and various recommendation elements from Twitter, YouTube, Instagram.
फ़ाइल का आकार 923 KB
स्थापना संख्या 28
वर्तमान संस्करण 1.3.0
अंतिम अपडेट 2022-03-07
प्रकाशन तिथि 2021-08-17
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://lukebriggs.dev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://lukebriggs.dev/calmer-internet
सहायता पृष्ठ URL https://github.com/LukeBriggsDev/calmer-internet/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Calmer Internet",
    "version": "1.3.0",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_title": "Calmer Internet"
    },
    "icons": {
        "48": "icons\/48.png",
        "96": "icons\/96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/*.instagram.com\/*"
            ],
            "js": [
                "calmer.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/twitter.com\/*",
        "*:\/\/*.instagram.com\/*",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "description": "Provides a calmer internet experience. Removes comments and various recommendation elements from Twitter, YouTube, Instagram.",
    "options_ui": {
        "page": "options.html"
    }
}