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