HideRT
Show and hide retweets from Twitter timeline.
Qu'est-ce que HideRT ?
HideRT est une extension Chrome développée par Alan Dours, et sa fonction principale est "Show and hide retweets from Twitter timeline.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HideRT
Téléchargez les fichiers d'extension HideRT au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Hide retweets from Twitter timeline.
Informations de Base sur l'Extension
Nom | |
ID | gcekingpjldiahkdoddobmigpldmlojk |
URL Officiel | https://chromewebstore.google.com/detail/hidert/gcekingpjldiahkdoddobmigpldmlojk |
Description | Show and hide retweets from Twitter timeline. |
Taille du Fichier | 16.7 KB |
Nombre d'Installations | 94 |
Version Actuelle | 1.1.1 |
Dernière Mise à Jour | 2020-08-01 |
Date de Publication | 2019-05-17 |
Évaluation | 4.00/5 Total 5 Évaluations |
Développeur | Alan Dours |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/alandours/hidert |
Langues Prises en Charge | 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" ] } ] } |