TwitEmbed

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

什麼是TwitEmbed?

TwitEmbed是由ItsJag開發的Chrome擴展程式,該擴展的主要功能是“Minimal extension that allows you to share embedded versions of tweets directly from your browser.”。

擴展截圖

screenshot

下載TwitEmbed擴展crx文件

下載TwitEmbed擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 TwitEmbed TwitEmbed
ID iadammlbhfcjhbmeeeegdhljoojdhfea
官方網址 https://chromewebstore.google.com/detail/twitembed/iadammlbhfcjhbmeeeegdhljoojdhfea
簡介 Minimal extension that allows you to share embedded versions of tweets directly from your browser.
檔案大小 26.02 KB
安裝次數 72
目前版本 1.2.2
更新時間 2024-02-20
上架時間 2023-11-20
評分 5.00/5 共 4 次評分
開發者 ItsJag
電子郵箱 [email protected]
付費類型 free
支援的語言 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}"
        }
    }
}