Focussed Twitter

Let's focus on the tweets!

Wat is Focussed Twitter?

Focussed Twitter is een Chrome-extensie ontwikkeld door jh3y, en de belangrijkste functie is "Let's focus on the tweets!".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Focussed Twitter

Download Focussed Twitter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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! 🐦                    

Basisinformatie over de Extensie

Naam Focussed Twitter Focussed Twitter
ID efldegaojlekkkoegoeakkgknaagjeoj
Officiële URL https://chromewebstore.google.com/detail/focussed-twitter/efldegaojlekkkoegoeakkgknaagjeoj
Beschrijving Let's focus on the tweets!
Bestandsgrootte 19.4 KB
Aantal Installaties 44
Huidige Versie 0.11
Laatst Bijgewerkt 2022-01-28
Publicatiedatum 2020-06-23
Beoordeling 4.67/5 Totaal 3 Beoordelingen
Ontwikkelaar jh3y
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/jh3y/focussed-twitter
Help Pagina-URL https://github.com/jh3y/focussed-twitter/issues
Ondersteunde Talen 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"
    }
}