Read Only Twitter
Enhance your Twitter experience by preventing yourself from actually interacting.
What is Read Only Twitter?
Read Only Twitter is a Chrome extension developed by TheCleric, and its main feature is "Enhance your Twitter experience by preventing yourself from actually interacting.".
Extension Screenshots
Download Read Only Twitter Extension CRX File
Download Read Only Twitter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Read Only Twitter |
ID | cemhfjoonebpbnddchcopobdgdngnhdl |
Official URL | https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl |
Description | Enhance your Twitter experience by preventing yourself from actually interacting. |
File Size | 164 KB |
Installation Count | 56 |
Current Version | 1.0.1 |
Last Updated | 2020-08-24 |
Publish Date | 2020-08-21 |
Rating | 5.00/5 Total 3 Ratings |
Developer | TheCleric |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/TheCleric/ReadOnlyTwitter |
Help Page URL | https://github.com/TheCleric/ReadOnlyTwitter |
Supported Languages | 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" } } |