Hide Retweets
Remove retweets by specific users or everyone on Twitter
Co je Hide Retweets?
Hide Retweets je rozšíření Chrome vyvinuté Kevin Leutzinger, a jeho hlavní funkcí je „Remove retweets by specific users or everyone on Twitter“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Hide Retweets
Stáhněte si soubory rozšíření Hide Retweets ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | iehhaigbokpilpilegajanpckfgbegdm |
Oficiální URL | https://chrome.google.com/webstore/detail/hide-retweets/iehhaigbokpilpilegajanpckfgbegdm |
Popis | Remove retweets by specific users or everyone on Twitter |
Velikost souboru | 334 KB |
Počet instalací | 89 |
Aktuální Verze | 0.2 |
Poslední Aktualizace | 2018-02-07 |
Datum Vydání | 2018-02-07 |
Hodnocení | 2.09/5 Celkem 11 Hodnocení |
Vývojář | Kevin Leutzinger |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } ] } |