Show Titles In X (formerly Twitter) Links

Show titles in articles and URLs shared on X (formerly Twitter).

Show Titles In X (formerly Twitter) Linksคืออะไร?

Show Titles In X (formerly Twitter) Links เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kevin Yun (@kevinyun) และคุณลักษณะหลักของมันคือ "Show titles in articles and URLs shared on X (formerly Twitter)."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Show Titles In X (formerly Twitter) Links

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

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

                        In an October 2023 update to X, headlines/titles on URLs shared on posts were removed. This Chrome extension adds back in those titles so you can get less confused on what's an image and what's a URL.

Once you install this Chrome extension, there's no further action you need to do. Titles will automatically appear in your X feed.

The code is open source under GPL-3.0 license. You can fork it, make improvements, or do whatever else you please: https://github.com/kevinyun/show-titles-in-twitter-links                    

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

ชื่อ Show Titles In X (formerly Twitter) Links Show Titles In X (formerly Twitter) Links
ID kckhadoijmchkeomaphocmobgpgmbnek
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/show-titles-in-x-formerly/kckhadoijmchkeomaphocmobgpgmbnek
คำอธิบาย Show titles in articles and URLs shared on X (formerly Twitter).
ขนาดไฟล์ 19.65 KB
จำนวนการติดตั้ง 319
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2023-10-24
วันที่เผยแพร่ 2023-10-07
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Kevin Yun (@kevinyun)
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/e/2PACX-1vQrmtYdT6zwh3UOTHWCGG3pE3J3sXhBZ3WCxlMGxRn1ApTc-b8TemTbBaIYGqrawMrkrVdmlWihKACd/pub
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Show Titles In X (formerly Twitter) Links",
    "description": "Show titles in articles and URLs shared on X (formerly Twitter).",
    "version": "1.5",
    "action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/x.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}