Shorten.rest URL Shortener

Easily create & manage branded short links

Shorten.rest URL Shortener란 무엇입니까?

Shorten.rest URL Shortener은(는) https://shorten.rest에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily create & manage branded short links"입니다.

확장 프로그램 스크린샷

screenshot

Shorten.rest URL Shortener 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Shorten.REST URL Shortening API Chrome Extension - Easily shorten and manage your short branded URLs without having to login to your account.

Search, Update & Manage your existing short URLs with ease.

Choose between short.fyi and your own branded domains (multiple domains allowed!).
Customize the URI (vanity / alias / URL ending) to make it meaningful.

Add Retargeting & Tracking pixels for each URL or at the account level.
Add UTM's to any URL.

Destination URL character limit of 8192.

Get your free API key at https://shorten.rest                    

확장 프로그램 기본 정보

이름 Shorten.rest URL Shortener Shorten.rest URL Shortener
ID eaiocdhmmbfbfcgmlmhnpeehiddddanb
공식 URL https://chromewebstore.google.com/detail/shortenrest-url-shortener/eaiocdhmmbfbfcgmlmhnpeehiddddanb
설명 Easily create & manage branded short links
파일 크기 1.99 MB
설치 횟수 60
현재 버전 1.0.1
최근 업데이트 2020-05-29
출시 날짜 2020-05-28
평점 5.00/5 총 12 개의 평점
개발자 https://shorten.rest
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://shorten.rest
도움말 페이지 URL https://shorten.rest/knowledge-base/
개인정보 보호 정책 페이지 URL https://apilads.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shorten.rest URL Shortener",
    "description": "Easily create & manage branded short links",
    "version": "1.0.1",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "assets\/images\/logo16.png",
            "32": "assets\/images\/logo32.png",
            "48": "assets\/images\/logo48.png",
            "128": "assets\/images\/logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js",
                "runtime.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/images\/logo16.png",
        "32": "assets\/images\/logo32.png",
        "48": "assets\/images\/logo48.png",
        "128": "assets\/images\/logo128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "https:\/\/*.shorten.rest\/",
        "https:\/\/api.shorten.rest\/",
        "https:\/\/shorten.rest\/"
    ]
}