URL Shortener
Shortens URLs with various services.
URL Shortenerとは何ですか?
URL ShortenerはKlaus Eckeltによって開発されたChromeの拡張機能で、その主な機能は「Shortens URLs with various services.」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| ID | ecoljajakaeclkkcakoamigglloihgao |
| 公式URL | 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"
} | |