Hide Retweets
Remove retweets by specific users or everyone on Twitter
Hide Retweets là gì?
Hide Retweets là một tiện ích mở rộng Chrome được phát triển bởi Kevin Leutzinger, và tính năng chính của nó là "Remove retweets by specific users or everyone on Twitter".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Hide Retweets
Tải xuống các tệp mở rộng Hide Retweets dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Got a friend who retweets too much? Hide/Block/Remove retweets from a specific list of users, or hide everyone's retweets. Retweets are collapsed and can be viewed if clicked. Source: https://github.com/kleutzinger/Hide-Retweets-Extension
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | iehhaigbokpilpilegajanpckfgbegdm |
URL Chính Thức | https://chrome.google.com/webstore/detail/hide-retweets/iehhaigbokpilpilegajanpckfgbegdm |
Mô tả | Remove retweets by specific users or everyone on Twitter |
Kích Thước Tệp | 334 KB |
Số Lần Cài Đặt | 89 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2018-02-07 |
Ngày Phát Hành | 2018-02-07 |
Đánh Giá | 2.09/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | Kevin Leutzinger |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide Retweets", "description": "Remove retweets by specific users or everyone on Twitter", "version": "0.2", "permissions": [ "https:\/\/twitter.com\/", "storage", "activeTab" ], "icons": { "16": "img\/icon16.png", "32": "img\/icon16.png", "48": "img\/icon48.png", "64": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": "img\/icon128.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "img\/icon128.png", "js\/underscore-1.5.2.min.map" ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "js": [ "js\/underscore-1.5.2.min.js", "js\/content.js" ], "run_at": "document_end" } ] } |