Twitter Cleaner
Removes annoying twitter boxes
什麼是Twitter Cleaner?
Twitter Cleaner是由https://cavar.net開發的Chrome擴展程式,該擴展的主要功能是“Removes annoying twitter boxes”。
擴展截圖
下載Twitter Cleaner擴展crx文件
下載Twitter Cleaner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Removes trending, who to follow and footer boxes. Report any issues here https://github.com/Palethorn/twitter_cleaner/issues
擴展基本資訊
名稱 | |
ID | oocpmdgjlccdinophpbbkmfdjooflfac |
官方網址 | https://chrome.google.com/webstore/detail/twitter-cleaner/oocpmdgjlccdinophpbbkmfdjooflfac |
簡介 | Removes annoying twitter boxes |
檔案大小 | 92.48 KB |
安裝次數 | 50 |
目前版本 | 2.0.0 |
更新時間 | 2019-11-21 |
上架時間 | 2019-11-21 |
評分 | 5.00/5 共 1 次評分 |
開發者 | https://cavar.net |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/Palethorn/twitter_cleaner |
說明頁面URL | https://github.com/Palethorn/twitter_cleaner/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Cleaner", "version": "2.0.0", "manifest_version": 2, "applications": { "gecko": { "id": "[email protected]" } }, "description": "Removes annoying twitter boxes", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_popup": "menu.html" }, "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true } } |