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 |
官方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" ] } |