Chromerly URL-shortener

Chromerly is a simple yet featureful URL-shortener extension.

Chromerly URL-shortener क्या है?

Chromerly URL-shortener Ville Lahdenvuo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chromerly is a simple yet featureful URL-shortener extension."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chromerly URL-shortener एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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__"
    }
}