Hide Retweets
Remove retweets by specific users or everyone on Twitter
什麼是Hide Retweets?
Hide Retweets是由Kevin Leutzinger開發的Chrome擴展程式,該擴展的主要功能是“Remove retweets by specific users or everyone on Twitter”。
擴展截圖
下載Hide Retweets擴展crx文件
下載Hide Retweets擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | |
ID | iehhaigbokpilpilegajanpckfgbegdm |
官方網址 | https://chrome.google.com/webstore/detail/hide-retweets/iehhaigbokpilpilegajanpckfgbegdm |
簡介 | Remove retweets by specific users or everyone on Twitter |
檔案大小 | 334 KB |
安裝次數 | 89 |
目前版本 | 0.2 |
更新時間 | 2018-02-07 |
上架時間 | 2018-02-07 |
評分 | 2.09/5 共 11 次評分 |
開發者 | Kevin Leutzinger |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } ] } |