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 |
| 官方網址 | 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'"
}
} | |