TwitEmbed

Minimal extension that allows you to share embedded versions of tweets directly from your browser.

TwitEmbed là gì?

TwitEmbed là một tiện ích mở rộng Chrome được phát triển bởi ItsJag, và tính năng chính của nó là "Minimal extension that allows you to share embedded versions of tweets directly from your browser.".

Ả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 TwitEmbed

Tải xuống các tệp mở rộng TwitEmbed 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

                        Add-on that replaces "Share Post" links with links to fxtwitter.com, a well-known redirect used for twitter embeds. And also has a hotkey (ctrl+c) to copy an embed if a tweet is focused.

Twitter logo owned by Twitter/X.
Link Art by Vecteezy.

v1.2.2:
Reverted domain change, option to choose domain in progress.

v1.2.1:
Changed linked domain to fxtwitter.com due to recent concerns following the fxdeviantart domain being hijacked. 

v1.2:
Fixed bug where embed doesn't copy to clipboard when page is focused on an image
Updated icons to display properly for Chromium and Firefox
Updated manifest file to adhere to manifest v3 requirements

v1.1:
Alters the "Copy Link" text on twitter to "Copy Embed" as a small UX change.                    

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

Tên TwitEmbed TwitEmbed
ID iadammlbhfcjhbmeeeegdhljoojdhfea
URL Chính Thức https://chromewebstore.google.com/detail/twitembed/iadammlbhfcjhbmeeeegdhljoojdhfea
Mô tả Minimal extension that allows you to share embedded versions of tweets directly from your browser.
Kích Thước Tệp 26.02 KB
Số Lần Cài Đặt 72
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2024-02-20
Ngày Phát Hành 2023-11-20
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển ItsJag
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.2.2",
    "description": "Minimal extension that allows you to share embedded versions of tweets directly from your browser.",
    "name": "TwitEmbed",
    "icons": {
        "48": "icons\/border-48.png",
        "96": "icons\/border-96.png",
        "128": "icons\/border-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.x.com\/*"
            ],
            "js": [
                "twitterembed.js"
            ]
        }
    ],
    "permissions": [],
    "host_permissions": [
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.x.com\/*"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{daf60720-ff10-4584-a7b7-49ec1b8e34c0}"
        }
    }
}