Simplify Twitter
Reduces Twitter interface to the bare minimum
什么是Simplify Twitter?
Simplify Twitter是由https://simpl.fyi开发的Chrome扩展程序,该扩展的主要功能是“Reduces Twitter interface to the bare minimum”。
扩展截图
下载Simplify Twitter扩展crx文件
下载Simplify Twitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Only simplifies the main feed and messages right now... more to do. 扩展基本信息
| 名称 | |
| ID | nmamhdcfoimpliccgjfchlglfhbelpmb |
| 官方URL | https://chromewebstore.google.com/detail/simplify-twitter/nmamhdcfoimpliccgjfchlglfhbelpmb |
| 简介 | Reduces Twitter interface to the bare minimum |
| 文件大小 | 17.24 KB |
| 安装次数 | 47 |
| 当前版本 | 1.4.10 |
| 更新时间 | 2024-02-16 |
| 上架时间 | 2022-12-20 |
| 开发者 | https://simpl.fyi |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://simpl.fyi/privacy |
| 支持的语言 | 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'"
}
} | |