Restore Link Card

A browser extension to restore OGP link cards on Twitter (X).

Restore Link Card là gì?

Restore Link Card là một tiện ích mở rộng Chrome được phát triển bởi ろぼいん, và tính năng chính của nó là "A browser extension to restore OGP link cards on Twitter (X).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Restore Link Card

Tải xuống các tệp mở rộng Restore Link Card dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Twitter (X) removed headings from links in tweets (posts) on October 4, 2023. This extension restores the removed headlines and restores the previous ease of use.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Restore Link Card Restore Link Card
ID ifgokfhnpkmpjgjiimciofkebopknkli
URL Chính Thức https://chromewebstore.google.com/detail/restore-link-card/ifgokfhnpkmpjgjiimciofkebopknkli
Mô tả A browser extension to restore OGP link cards on Twitter (X).
Kích Thước Tệp 12.15 KB
Số Lần Cài Đặt 570
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-10-06
Ngày Phát Hành 2023-10-05
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển ろぼいん
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Robot-Inventor/restore-link-card
URL Trang Trợ Giúp https://github.com/Robot-Inventor/restore-link-card
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Restore Link Card",
    "short_name": "RestoreLinkCard",
    "version": "1.1.0",
    "description": "A browser extension to restore OGP link cards on Twitter (X).",
    "icons": {
        "128": "icon.png"
    },
    "host_permissions": [
        "https:\/\/twitter.com\/*",
        "https:\/\/mobile.twitter.com\/*",
        "https:\/\/tweetdeck.twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/tweetdeck.twitter.com\/*"
            ],
            "js": [
                "loader.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "main.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/tweetdeck.twitter.com\/*"
            ]
        }
    ]
}