Read Only Twitter
Enhance your Twitter experience by preventing yourself from actually interacting.
Hvad er Read Only Twitter?
Read Only Twitter er en Chrome-udvidelse udviklet af TheCleric, og dens hovedfunktion er "Enhance your Twitter experience by preventing yourself from actually interacting.".
Udvidelsesskærmbilleder
Download Read Only Twitter-udvidelses-CRX-fil
Download Read Only Twitter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
By not interacting you're less likely to get sucked into useless arguments, which will make you happier in the long run. Allow your Twitter stream to flow past you, and then let it go. Options to disable tweets, retweets, likes, and direct messages.
Grundlæggende oplysninger om udvidelsen
Navn | Read Only Twitter |
ID | cemhfjoonebpbnddchcopobdgdngnhdl |
Officiel URL | https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl |
Beskrivelse | Enhance your Twitter experience by preventing yourself from actually interacting. |
Filstørrelse | 164 KB |
Antal Installationer | 56 |
Nuværende Version | 1.0.1 |
Senest Opdateret | 2020-08-24 |
Udgivelsesdato | 2020-08-21 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | TheCleric |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/TheCleric/ReadOnlyTwitter |
Hjælpeside-URL | https://github.com/TheCleric/ReadOnlyTwitter |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Read Only Twitter", "version": "1.0.1", "description": "Enhance your Twitter experience by preventing yourself from actually interacting.", "manifest_version": 2, "permissions": [ "storage" ], "options_ui": { "page": "readOnlyTwitterOptions.html", "open_in_tab": false }, "browser_action": { "default_popup": "readOnlyTwitterOptions.html", "default_icon": { "128": "icons\/ReadOnlyTwitter128.png", "512": "icons\/ReadOnlyTwitter.png" } }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "readOnlyTwitter.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com https:\/\/www.googletagmanager.com; object-src 'self'", "icons": { "128": "icons\/ReadOnlyTwitter128.png", "512": "icons\/ReadOnlyTwitter.png" } } |