Remove twitter login blocker

Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.

Τι είναι το Remove twitter login blocker;

Το Remove twitter login blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον BeniNovakDev, και η κύρια λειτουργία του είναι "Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Remove twitter login blocker

Λήψη αρχείων επέκτασης Remove twitter login blocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Enables browsing twitter without account or being logged in --- a "feature" that was introduced sometime in the summer of 2021. It does this by hiding the annoying "Log in / Sign up" prompt when it pops up. When it hides the popup it will also hide the blue banner on the bottom of the screen, which is there to also convince you to login, and the "enable cookies" prompt. Made for people who only occasionally use twitter to check on a specific account for updates and the like.

This extension might not work properly if used when logged in.

Icon for the extension provided by SVG Repo - - https://www.svgrepo.com/                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Remove twitter login blocker Remove twitter login blocker
ID gbhahioefeljhgjpkpicielemekceafn
Επίσημο URL https://chromewebstore.google.com/detail/remove-twitter-login-bloc/gbhahioefeljhgjpkpicielemekceafn
Περιγραφή Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.
Μέγεθος Αρχείου 23.39 KB
Αριθμός Εγκαταστάσεων 2,414
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2022-03-30
Ημερομηνία Δημοσίευσης 2022-03-28
Αξιολόγηση 3.36/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής BeniNovakDev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove twitter login blocker",
    "version": "1.0",
    "description": "Removes the annoying Twitter log in\/sign up blocker, which prevents the use of Twitter without an account.",
    "icons": {
        "16": "icon-small.png",
        "48": "icon-medium.png",
        "96": "icon-big.png",
        "128": "icon-default.png"
    },
    "author": "Benjamin Luka Novak",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}