Simplify Twitter
Reduces Twitter interface to the bare minimum
What is Simplify Twitter?
Simplify Twitter is a Chrome extension developed by https://simpl.fyi, and its main feature is "Reduces Twitter interface to the bare minimum".
Extension Screenshots
Download Simplify Twitter Extension CRX File
Download Simplify 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
Only simplifies the main feed and messages right now... more to do.
Extension Basic Information
Name | Simplify Twitter |
ID | nmamhdcfoimpliccgjfchlglfhbelpmb |
Official URL | https://chromewebstore.google.com/detail/simplify-twitter/nmamhdcfoimpliccgjfchlglfhbelpmb |
Description | Reduces Twitter interface to the bare minimum |
File Size | 17.24 KB |
Installation Count | 47 |
Current Version | 1.4.10 |
Last Updated | 2024-02-16 |
Publish Date | 2022-12-20 |
Developer | https://simpl.fyi |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://simpl.fyi/privacy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simplify Twitter", "version": "1.4.10", "manifest_version": 3, "description": "Reduces Twitter interface to the bare minimum", "homepage_url": "https:\/\/simpl.fyi", "icons": { "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "js\/util.js", "js\/constants.js", "js\/observers.js", "js\/main.js" ], "css": [ "css\/style.css" ], "run_at": "document_start", "all_frames": false } ], "web_accessible_resources": [ { "resources": [ "img\/*" ], "matches": [ "https:\/\/*.twitter.com\/*" ] } ], "content_security_policy": { "extension_pages": "default-src 'self'; style-src 'self'; script-src 'self'; img-src 'self'" } } |