HideRT
Show and hide retweets from Twitter timeline.
什麼是HideRT?
HideRT是由Alan Dours開發的Chrome擴展程式,該擴展的主要功能是“Show and hide retweets from Twitter timeline.”。
擴展截圖
下載HideRT擴展crx文件
下載HideRT擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Hide retweets from Twitter timeline.
擴展基本資訊
名稱 | |
ID | gcekingpjldiahkdoddobmigpldmlojk |
官方網址 | https://chromewebstore.google.com/detail/hidert/gcekingpjldiahkdoddobmigpldmlojk |
簡介 | Show and hide retweets from Twitter timeline. |
檔案大小 | 16.7 KB |
安裝次數 | 94 |
目前版本 | 1.1.1 |
更新時間 | 2020-08-01 |
上架時間 | 2019-05-17 |
評分 | 4.00/5 共 5 次評分 |
開發者 | Alan Dours |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/alandours/hidert |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HideRT", "description": "Show and hide retweets from Twitter timeline.", "version": "1.1.1", "permissions": [ "storage" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png" }, "browser_action": { "browser_style": true, "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" }, "default_title": "Hide retweets" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "hidert.js" ], "css": [ "hidert.css" ] } ] } |