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 |
| Eメール | [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'"
}
} | |