Calm Twitter

This extension hides trending information from twitter timelines to make your mind calm.

Calm Twitter क्या है?

Calm Twitter Yusuke Saitoh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension hides trending information from twitter timelines to make your mind calm."।

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

screenshot
screenshot
screenshot

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

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

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

                        1. Hide "Explore" tab from the left column
2. Hide trends and who to follow from the right column
3. Hide numbers of replies, retweets, likes and bookmarks.
.  They appear when you hover the mouse cursor on the tweet
4. Hide view counts
5. Show "Calm" next to the Twitter logo

Additional features (off by default, can be turned on from settings)
6. Hide the number of following
7. Hide the number of followers
8. Hide numbers of replies, retweets, and likes in detail pages
9. Hide numbers of replies, retweets, and likes, even if you hover the mouse cursor on the tweet
10. Hide Who to follow
11. Hide Topics to follow
12. Change Japanese font from Meiryo to Hiragino on Mac

This extension requires a permission to save the settings and only toggles hide or show.

The source code is available on Github
https://github.com/yusukesaitoh/calm-twitter                    

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

नाम Calm Twitter Calm Twitter
ID cknklikacoaeledfaldmhabmldkldocj
आधिकारिक URL https://chromewebstore.google.com/detail/calm-twitter/cknklikacoaeledfaldmhabmldkldocj
विवरण This extension hides trending information from twitter timelines to make your mind calm.
फ़ाइल का आकार 20.66 KB
स्थापना संख्या 45,312
वर्तमान संस्करण 1.5.1
अंतिम अपडेट 2023-11-21
प्रकाशन तिथि 2020-05-25
रेटिंग 4.77/5 कुल 210 रेटिंग्स
डेवलपर Yusuke Saitoh
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/yusukesaitoh/calm-twitter
समर्थित भाषाएँ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "version": "1.5.1",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "scripts\/background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}