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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
공식 URL 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}"
        }
    }
}