Focussed Twitter

Let's focus on the tweets!

Focussed Twitter क्या है?

Focussed Twitter jh3y द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Let's focus on the tweets!"।

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Focussed Twitter aims to help you focus on what you're on Twitter for, the tweets! 🙌

Features include:
- Dim sides on scroll
- Set the dim
- Hide the sidebar
- Remove tweet borders
- Increase the margin between tweets
- Permanently dim sides
- Hide Metrics!
- Hide DMs
- Experimental "Everybody's an NFT" feature
- Avatar Radius

The original idea for better UX was that if I scrolled Twitter, I wanted everything else to fade away for a moment.
No need to remove elements or break the behavior/layout 👍
Everything that "Focussed Twitter" does can be switched off or configured to your liking in the extension options 💪

Any suggestions/feedback welcome! 🐦                    

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

नाम Focussed Twitter Focussed Twitter
ID efldegaojlekkkoegoeakkgknaagjeoj
आधिकारिक URL https://chromewebstore.google.com/detail/focussed-twitter/efldegaojlekkkoegoeakkgknaagjeoj
विवरण Let's focus on the tweets!
फ़ाइल का आकार 19.4 KB
स्थापना संख्या 44
वर्तमान संस्करण 0.11
अंतिम अपडेट 2022-01-28
प्रकाशन तिथि 2020-06-23
रेटिंग 4.67/5 कुल 3 रेटिंग्स
डेवलपर jh3y
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jh3y/focussed-twitter
सहायता पृष्ठ URL https://github.com/jh3y/focussed-twitter/issues
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focussed Twitter",
    "version": "0.11",
    "short_name": "focussedtwitter",
    "description": "Let's focus on the tweets!",
    "manifest_version": 2,
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "css": [
                "styles\/focussed-twitter.css"
            ],
            "js": [
                "scripts\/focussed-twitter.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "page_action": {
        "default_popup": "pages\/popup.html",
        "matches": [
            "https:\/\/twitter.com\/*",
            "https:\/\/mobile.twitter.com\/*"
        ],
        "default_icon": {
            "16": "icons\/focussed_twitter_16.png",
            "32": "icons\/focussed_twitter_32.png",
            "48": "icons\/focussed_twitter_48.png",
            "128": "icons\/focussed_twitter_128.png"
        }
    },
    "icons": {
        "16": "icons\/focussed_twitter_16.png",
        "32": "icons\/focussed_twitter_32.png",
        "48": "icons\/focussed_twitter_48.png",
        "128": "icons\/focussed_twitter_128.png"
    }
}