Chromerly URL-shortener

Chromerly is a simple yet featureful URL-shortener extension.

Chromerly URL-shortener란 무엇입니까?

Chromerly URL-shortener은(는) Ville Lahdenvuo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chromerly is a simple yet featureful URL-shortener extension."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Chromerly URL-shortener 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        We all hate those long auto-generated links that we see every day. So I made this simple extension to easily shorten those links and making sharing things a breeze.

Features:
 * Simple icon to click to shorten tab's url
 * Context menu to shorten page, image, link, selection, video or even audio urls
 * Urly keyword in the omnibox to shorten any url you want
 * NEW: You can now block shortened links and redirect to info page instead!
 * NEW: Chromerly now supports Web Intents!

If you want to know exactly how this extension works, take a look at the source code! This is an open source project.                    

확장 프로그램 기본 정보

이름 Chromerly URL-shortener Chromerly URL-shortener
ID ebfkcfgnlbfdnjfpoegigihcijkmnpee
공식 URL https://chromewebstore.google.com/detail/chromerly-url-shortener/ebfkcfgnlbfdnjfpoegigihcijkmnpee
설명 Chromerly is a simple yet featureful URL-shortener extension.
파일 크기 99.36 KB
설치 횟수 429
현재 버전 2.1
최근 업데이트 2012-07-07
출시 날짜 2012-07-07
평점 4.11/5 총 19 개의 평점
개발자 Ville Lahdenvuo
결제 유형 free
도움말 페이지 URL http://github.com/tuhoojabotti/Chromerly-URL-shortener
지원되는 언어 en,fi
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ExtensionName__",
    "description": "__MSG_ExtensionDesc__",
    "version": "2.1",
    "manifest_version": 2,
    "default_locale": "en",
    "homepage_url": "http:\/\/github.com\/tuhoojabotti\/Chromerly-URL-shortener",
    "minimum_chrome_version": "19",
    "permissions": [
        "",
        "tabs",
        "notifications",
        "contextMenus",
        "clipboardWrite"
    ],
    "optional_permissions": [
        "webRequest",
        "webRequestBlocking"
    ],
    "options_page": "options\/options.html",
    "icons": {
        "16": "graphics\/16.png",
        "48": "graphics\/48.png",
        "128": "graphics\/128.png"
    },
    "intents": {
        "http:\/\/webintents.org\/shorten": {
            "type": [
                "text\/uri-list"
            ],
            "href": "intent\/intent.html",
            "title": "Shorten with Chromerly",
            "disposition": "inline"
        }
    },
    "background": {
        "page": "background.html"
    },
    "omnibox": {
        "keyword": "urly"
    },
    "page_action": {
        "default_icon": "graphics\/16.png",
        "default_title": "__MSG_UrlyShorten__"
    }
}