Simplify Twitter
Reduces Twitter interface to the bare minimum
Simplify Twitter là gì?
Simplify Twitter là một tiện ích mở rộng Chrome được phát triển bởi https://simpl.fyi, và tính năng chính của nó là "Reduces Twitter interface to the bare minimum".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Simplify Twitter
Tải xuống các tệp mở rộng Simplify Twitter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Only simplifies the main feed and messages right now... more to do.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Simplify Twitter |
ID | nmamhdcfoimpliccgjfchlglfhbelpmb |
URL Chính Thức | https://chromewebstore.google.com/detail/simplify-twitter/nmamhdcfoimpliccgjfchlglfhbelpmb |
Mô tả | Reduces Twitter interface to the bare minimum |
Kích Thước Tệp | 17.24 KB |
Số Lần Cài Đặt | 47 |
Phiên Bản Hiện Tại | 1.4.10 |
Cập Nhật Lần Cuối | 2024-02-16 |
Ngày Phát Hành | 2022-12-20 |
Nhà Phát Triển | https://simpl.fyi |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://simpl.fyi/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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'" } } |