HideRT
Show and hide retweets from Twitter timeline.
Wat is HideRT?
HideRT is een Chrome-extensie ontwikkeld door Alan Dours, en de belangrijkste functie is "Show and hide retweets from Twitter timeline.".
Extensie Screenshots
Download het CRX-bestand van de extensie HideRT
Download HideRT-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Hide retweets from Twitter timeline.
Basisinformatie over de Extensie
Naam | |
ID | gcekingpjldiahkdoddobmigpldmlojk |
Officiële URL | https://chromewebstore.google.com/detail/hidert/gcekingpjldiahkdoddobmigpldmlojk |
Beschrijving | Show and hide retweets from Twitter timeline. |
Bestandsgrootte | 16.7 KB |
Aantal Installaties | 94 |
Huidige Versie | 1.1.1 |
Laatst Bijgewerkt | 2020-08-01 |
Publicatiedatum | 2019-05-17 |
Beoordeling | 4.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Alan Dours |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/alandours/hidert |
Ondersteunde Talen | 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" ] } ] } |