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文件

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