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은(는) Kevin Yun (@kevinyun)에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show titles in articles and URLs shared on X (formerly Twitter)."입니다.

확장 프로그램 스크린샷

screenshot

Show Titles In X (formerly Twitter) Links 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}