Focussed Twitter

Let's focus on the tweets!

Qu'est-ce que Focussed Twitter ?

Focussed Twitter est une extension Chrome développée par jh3y, et sa fonction principale est "Let's focus on the tweets!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Focussed Twitter

Téléchargez les fichiers d'extension Focussed Twitter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Focussed Twitter Focussed Twitter
ID efldegaojlekkkoegoeakkgknaagjeoj
URL Officiel https://chromewebstore.google.com/detail/focussed-twitter/efldegaojlekkkoegoeakkgknaagjeoj
Description Let's focus on the tweets!
Taille du Fichier 19.4 KB
Nombre d'Installations 44
Version Actuelle 0.11
Dernière Mise à Jour 2022-01-28
Date de Publication 2020-06-23
Évaluation 4.67/5 Total 3 Évaluations
Développeur jh3y
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jh3y/focussed-twitter
URL de la Page d'Aide https://github.com/jh3y/focussed-twitter/issues
Langues Prises en Charge 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"
    }
}