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