Twitter View Count Remover

A chrome extension to remove the Views count from Twitter

Twitter View Count Removerとは何ですか?

Twitter View Count RemoverはMyUsernamesThisによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension to remove the Views count from Twitter」です。

拡張機能のスクリーンショット

screenshot
screenshot

Twitter View Count Remover拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}