Twa.si URL-shortener

Official Twa.si URL-shortener extension.

Twa.si URL-shortener란 무엇입니까?

Twa.si URL-shortener은(는) https://twa.si에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Official Twa.si URL-shortener extension."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Twa.si URL-shortener 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Your shortlink is just one click away!

Shorten URLs using the twa.si URL-shortener.
Open any web-page and click the shortener icon or rightclick any link. 
It will create and copy your twa.si url.

It's even faster than copying the page URL manually!

Our URL-shortener is fast, easy to use and completely free. 
You don't need an account to use it.

We are proud to be a part of the open source community. You can find this and other projects on our GitHub page at https://twa.si/r/github.                    

확장 프로그램 기본 정보

이름 Twa.si URL-shortener Twa.si URL-shortener
ID lngjokdnklohagplfpcpjjmmkcehiabm
공식 URL https://chromewebstore.google.com/detail/twasi-url-shortener/lngjokdnklohagplfpcpjjmmkcehiabm
설명 Official Twa.si URL-shortener extension.
파일 크기 193 KB
설치 횟수 38
현재 버전 1.4
최근 업데이트 2020-09-24
출시 날짜 2020-09-07
평점 5.00/5 총 8 개의 평점
개발자 https://twa.si
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/twasi/twasi-shortener-chrome-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twa.si URL-shortener",
    "version": "1.4",
    "manifest_version": 2,
    "description": "Official Twa.si URL-shortener extension.",
    "author": "Twasi-Team",
    "homepage_url": "https:\/\/github.com\/twasi\/twasi-shortener-chrome-extension",
    "offline_enabled": false,
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/twa.si\/*",
        "contextMenus",
        "clipboardWrite",
        "notifications"
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_title": "Shorten this URL with twa.si",
        "default_popup": "ui\/html\/popup.html",
        "default_icon": "icons\/64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twa.si\/*"
            ],
            "js": [
                "dist\/hide-ribbon.js"
            ]
        }
    ],
    "background": {
        "page": "ui\/html\/background.html"
    }
}