remove-twitter-trends
Switches Twitter trending topics off
什麼是remove-twitter-trends?
remove-twitter-trends是由Andre Alves Garzia開發的Chrome擴展程式,該擴展的主要功能是“Switches Twitter trending topics off”。
擴展截圖
下載remove-twitter-trends擴展crx文件
下載remove-twitter-trends擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This add-on removes the sidebar on Twitter website that contains the trending topics and who to follow sections. Many people I know have complained about mental health hazards seeing those trending topics. This add-on unlocks agency for the user as it permits them to block those items and have a cleaner Twitter experience.
擴展基本資訊
名稱 | remove-twitter-trends |
ID | pdbaomfhmpcbdabjpjfpoehhjnphdoac |
官方網址 | https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac |
簡介 | Switches Twitter trending topics off |
檔案大小 | 1.45 MB |
安裝次數 | 918 |
目前版本 | 1.0.1 |
更新時間 | 2021-12-31 |
上架時間 | 2021-12-31 |
評分 | 3.43/5 共 7 次評分 |
開發者 | Andre Alves Garzia |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "remove-twitter-trends", "description": "Switches Twitter trending topics off", "version": "1.0.1", "icons": { "64": "icons\/icon512.png" }, "background": { "scripts": [ "browser-polyfill.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "css": [ "style.css" ], "js": [ "browser-polyfill.js", "mithril.js", "content_script.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options\/index.html" }, "permissions": [ "webNavigation", "storage" ] } |