URL Shortener

Shortens URLs with various services.

什麼是URL Shortener?

URL Shortener是由Klaus Eckelt開發的Chrome擴展程式,該擴展的主要功能是“Shortens URLs with various services.”。

擴展截圖

screenshot
screenshot
screenshot

下載URL Shortener擴展crx文件

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

擴展使用說明

                        By clicking the extension's button the URL of the current Tab is used to create a shorter one.
The short URL will be displayed and automatically copied to your clipboard.

Services:
‣ anonym.to
‣ goo.gl
‣ is.gd
‣ t1p.de
‣ tinyurl.com:

Permissions:
‣ Access to anonym.to, is.gd, t1p.de, tinyurl.com googleapis.com: To use the services.
‣ Read browsing history: to read the current tab's URL. 
‣ Clipboard write to copy the shortened URL.

‣ Extension source code: https://bitbucket.org/keckelt/url-shorten-extension                    

擴展基本資訊

名稱 URL Shortener URL Shortener
ID ecoljajakaeclkkcakoamigglloihgao
官方網址 https://chromewebstore.google.com/detail/url-shortener/ecoljajakaeclkkcakoamigglloihgao
簡介 Shortens URLs with various services.
檔案大小 188 KB
安裝次數 1,873
目前版本 2.2
更新時間 2016-07-11
上架時間 2016-07-11
評分 4.71/5 共 17 次評分
開發者 Klaus Eckelt
付費類型 free
擴展官網 https://bitbucket.org/keckelt/url-shorten-extension
說明頁面URL https://chrome.google.com/webstore/detail/url-shortener/ecoljajakaeclkkcakoamigglloihgao/support
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Shortener",
    "description": "Shortens URLs with various services.",
    "version": "2.2",
    "author": "eckelt.info",
    "icons": {
        "16": "style\/images\/icon1\/icon-16.png",
        "19": "style\/images\/icon1\/icon-19.png",
        "32": "style\/images\/icon1\/icon-32.png",
        "38": "style\/images\/icon1\/icon-38.png",
        "48": "style\/images\/icon1\/icon-48.png",
        "64": "style\/images\/icon1\/icon-64.png",
        "128": "style\/images\/icon1\/icon-128.png",
        "256": "style\/images\/icon1\/icon-256.png"
    },
    "permissions": [
        "http:\/\/anonym.to\/",
        "https:\/\/www.googleapis.com\/urlshortener\/",
        "http:\/\/is.gd\/",
        "https:\/\/is.gd\/",
        "http:\/\/t1p.de\/",
        "http:\/\/tinyurl.com\/",
        "tabs",
        "clipboardWrite",
        "storage"
    ],
    "browser_action": {
        "default_title": "Click to shorten URL.",
        "default_icon": {
            "19": "style\/images\/icon1\/icon-19.png",
            "38": "style\/images\/icon1\/icon-38.png"
        },
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}