Twitter View Count Remover

A chrome extension to remove the Views count from Twitter

Τι είναι το Twitter View Count Remover;

Το Twitter View Count Remover είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον MyUsernamesThis, και η κύρια λειτουργία του είναι "A chrome extension to remove the Views count from Twitter".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Twitter View Count Remover

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

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

                        Tired of seeing the new Views counter on Twitter posts? This extension finds all instances of the Views counter and hides them on any Twitter.com page, restoring the previous interface consisting of only likes, replies, and retweets.

What's new:
Fixed bug affecting extension with no usernames in whitelist
Option to move views to after likes                    

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

Όνομα Twitter View Count Remover Twitter View Count Remover
ID chfanlbndjhbjjbacpcjbogknncaadnc
Επίσημο URL https://chromewebstore.google.com/detail/twitter-view-count-remove/chfanlbndjhbjjbacpcjbogknncaadnc
Περιγραφή A chrome extension to remove the Views count from Twitter
Μέγεθος Αρχείου 141 KB
Αριθμός Εγκαταστάσεων 35
Τρέχουσα Έκδοση 0.2.2
Τελευταία Ενημέρωση 2023-01-16
Ημερομηνία Δημοσίευσης 2022-12-26
Αξιολόγηση 4.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής MyUsernamesThis
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to remove the Views count from Twitter",
    "version": "0.2.2",
    "manifest_version": 3,
    "name": "Twitter View Count Remover",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "pageScript.js"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage"
    ]
}