Clean Twitter
Remove all the annoying clutter from your Twitter.
什么是Clean Twitter?
Clean Twitter是由dhaiwatpandya开发的Chrome扩展程序,该扩展的主要功能是“Remove all the annoying clutter from your Twitter.”。
扩展截图
下载Clean Twitter扩展crx文件
下载Clean Twitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Enhance your Twitter experience by removing some of the clutter. Currently supported features: 1) No sidebars on the right (Trending hashtags, ads, follow recommendations, etc) 2) No metrics/numbers (Likes, RTs, replies, followers) You can turn any of the features on and off at any time. This extension is open-source (https://github.com/Dhaiwat10/clean-twitter) and 100% safe to use. It does not collect any information or store it.
扩展基本信息
名称 | Clean Twitter |
ID | ibcjnfhpdjinbcmojnmpnokcgfljiebb |
官方URL | https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb |
简介 | Remove all the annoying clutter from your Twitter. |
文件大小 | 98.75 KB |
安装次数 | 306 |
当前版本 | 0.3.0 |
更新时间 | 2021-02-26 |
上架时间 | 2021-02-16 |
评分 | 4.00/5 共4次评分 |
开发者 | dhaiwatpandya |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Dhaiwat10/clean-twitter |
帮助页面URL | https://github.com/Dhaiwat10/clean-twitter/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clean Twitter", "description": "Remove all the annoying clutter from your Twitter.", "version": "0.3.0", "icons": { "16": "icon.png", "32": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "js\/jquery.js", "js\/content.js", "js\/popup.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_title": "Clean Twitter", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs" ] } |