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”。
擴展截圖
下載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 |
ID | chfanlbndjhbjjbacpcjbogknncaadnc |
官方網址 | 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" ] } |