URL Shortener
Shortens URLs with various services.
URL Shortener란 무엇입니까?
URL Shortener은(는) Klaus Eckelt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shortens URLs with various services."입니다.
확장 프로그램 스크린샷
URL Shortener 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |