Simplify Twitter

Reduces Twitter interface to the bare minimum

Simplify Twitterคืออะไร?

Simplify Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://simpl.fyi และคุณลักษณะหลักของมันคือ "Reduces Twitter interface to the bare minimum"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simplify Twitter

ดาวน์โหลดไฟล์ส่วนขยาย Simplify Twitter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Only simplifies the main feed and messages right now... more to do.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Simplify Twitter Simplify Twitter
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'"
    }
}