X / Twitter Feature Flags

Modifies feature flags on X.com / Twitter.com

Τι είναι το X / Twitter Feature Flags;

Το X / Twitter Feature Flags είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Yaroslav Nazarov, και η κύρια λειτουργία του είναι "Modifies feature flags on X.com / Twitter.com".

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

screenshot

Λήψη αρχείου CRX της επέκτασης X / Twitter Feature Flags

Λήψη αρχείων επέκτασης X / Twitter Feature Flags σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        This extension can unlock hidden features in the web version of X / Twitter.

Before a new feature gets released to all users, it usually becomes accessible to the developers and testers first. This is done using  "feature flags" - a mechanism that can turn certain features on or off for every account. "Secret Twitter Features" allows you to change those "flags" for your account, allowing you to try almost any feature that was added to the code.

To change feature flags, find "Features" item in the left menu in X app.                    

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

Όνομα X / Twitter Feature Flags X / Twitter Feature Flags
ID phioeneleonlckednejcmajbkmhhiepm
Επίσημο URL https://chromewebstore.google.com/detail/x-twitter-feature-flags/phioeneleonlckednejcmajbkmhhiepm
Περιγραφή Modifies feature flags on X.com / Twitter.com
Μέγεθος Αρχείου 87.57 KB
Αριθμός Εγκαταστάσεων 572
Τρέχουσα Έκδοση 3.0.0
Τελευταία Ενημέρωση 2023-09-17
Ημερομηνία Δημοσίευσης 2023-02-20
Αξιολόγηση 4.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Yaroslav Nazarov
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/yaroslav-n/x-feature-flags
Διεύθυνση URL της Σελίδας Βοήθειας https://twitter.com/512x512
URL της Σελίδας Πολιτικής Απορρήτου https://www.freeprivacypolicy.com/live/3b9fb73e-52c4-4577-82e1-eb9358f1fdce
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "X \/ Twitter Feature Flags",
    "manifest_version": 3,
    "version": "3.0.0",
    "description": "Modifies feature flags on X.com \/ Twitter.com",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/twitter.com\/",
        "https:\/\/x.com\/"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/twitter.com\/*",
            "https:\/\/x.com\/*"
        ]
    },
    "icons": {
        "16": "assets\/icons\/16.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "background": {
        "service_worker": "lib\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/ui.html",
                "assets\/icons\/tab_icon.svg",
                "assets\/icons\/tab_icon_dark_theme.svg",
                "lib\/ui.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/x.com\/*"
            ]
        }
    ]
}