Twitter Login Hider
Browse Twitter without an account!
Qu'est-ce que Twitter Login Hider ?
Twitter Login Hider est une extension Chrome développée par James Presario, et sa fonction principale est "Browse Twitter without an account!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitter Login Hider
Téléchargez les fichiers d'extension Twitter Login Hider 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
Trying to view Twitter but don't have an account? Normally after a few scrolls, you'll be prompted to create one to continue browsing. With this extension, that login prompt is removed, allowing you to view Twitter without an account!
Informations de Base sur l'Extension
Nom | Twitter Login Hider |
ID | eonjdimglkmekijpodngceidnbdajcba |
URL Officiel | https://chromewebstore.google.com/detail/twitter-login-hider/eonjdimglkmekijpodngceidnbdajcba |
Description | Browse Twitter without an account! |
Taille du Fichier | 107 KB |
Nombre d'Installations | 102 |
Version Actuelle | 1.00 |
Dernière Mise à Jour | 2022-09-17 |
Date de Publication | 2022-09-13 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | James Presario |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Login Hider", "description": "Browse Twitter without an account!", "version": "1.00", "manifest_version": 3, "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icons\/icon16.png", "32": "\/images\/icons\/icon32.png", "48": "\/images\/icons\/icon48.png", "128": "\/images\/icons\/icon128.png" } }, "icons": { "16": "\/images\/icons\/icon16.png", "32": "\/images\/icons\/icon32.png", "48": "\/images\/icons\/icon48.png", "128": "\/images\/icons\/icon128.png" }, "options_page": "onboarding.html", "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "nologin.js" ], "run_at": "document_idle" } ] } |