twitter-view-count-remover

Ultra simple browser extension that removes view count from tweets.

什麼是twitter-view-count-remover?

twitter-view-count-remover是由Fernando de la Rosa開發的Chrome擴展程式,該擴展的主要功能是“Ultra simple browser extension that removes view count from tweets.”。

擴展截圖

screenshot
screenshot

下載twitter-view-count-remover擴展crx文件

下載twitter-view-count-remover擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Simple browser extension that removes view count from tweets.

Easily remove view counts from tweets, no more comparing yourself to the Twitter elite, no more feeling like your tweets are falling into the abyss of the internet.

Try it now!

Source code is available at:
https://github.com/jfdelarosa/twitter-view-count-remover

CHANGELOG
v1.3 - Fixed a bug that does not allow to open the more options menu in own tweets
v1.2 - Added the possibility to show or hide the counter via a toggle
v1.1 - Added support for mobile.twitter.com domain
v1.0 - Initial release                    

擴展基本資訊

名稱 twitter-view-count-remover twitter-view-count-remover
ID kacedphpmelngnhgodfbnemedkbbiajj
官方網址 https://chromewebstore.google.com/detail/twitter-view-count-remove/kacedphpmelngnhgodfbnemedkbbiajj
簡介 Ultra simple browser extension that removes view count from tweets.
檔案大小 11.94 KB
安裝次數 1,485
目前版本 1.3.0
更新時間 2023-01-05
上架時間 2022-12-24
評分 4.70/5 共 23 次評分
開發者 Fernando de la Rosa
電子郵箱 [email protected]
付費類型 free
擴展官網 https://twitter.com/jfdelarosa
說明頁面URL https://twitter.com/jfdelarosa
隱私政策頁面URL https://www.lunanotes.io/privacy-policy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "jfdelarosa",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Ultra simple browser extension that removes view count from tweets.",
    "manifest_version": 3,
    "name": "twitter-view-count-remover",
    "permissions": [
        "storage",
        "tabs"
    ],
    "version": "1.3.0",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png"
        },
        "default_popup": "popup.html"
    }
}