Chilp.it URL Shortener

This extension helps to shrink your large URLs.

Что такое Chilp.it URL Shortener?

Chilp.it URL Shortener - это расширение Chrome, разработанное Chilp Media Group, и его основная функция - "This extension helps to shrink your large URLs.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Chilp.it URL Shortener

Скачайте файлы расширений Chilp.it URL Shortener в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This is the official Chrome extension for the Chilp.it URL shortener. 

You can can create short URLs of the current page by clicking the extension symbol or
pressing the keyboard shortcut Alt+Shift+C.

You can create short URLs of all links in the page by right clicking and choosing "Create shortlink"
from the context menu.

Shortlinks will be copied to your clipboard instantly.

Happy shortening.                    

Основная информация о расширении

Название Chilp.it URL Shortener Chilp.it URL Shortener
ID jdlddbgjpiammojoflhimhfbgindkblj
Официальный URL https://chromewebstore.google.com/detail/chilpit-url-shortener/jdlddbgjpiammojoflhimhfbgindkblj
Описание This extension helps to shrink your large URLs.
Размер файла 26.56 KB
Количество установок 43
Текущая Версия 1.0
Последнее Обновление 2017-01-03
Дата публикации 2017-01-03
Разработчик Chilp Media Group
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности http://chilp.it/tp.htm
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chilp.it URL Shortener",
    "description": "This extension helps to shrink your large URLs.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "chilpIcon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "http:\/\/chilp.it\/",
        "contextMenus",
        "clipboardWrite"
    ],
    "icons": {
        "16": "chilpIcon16.png",
        "128": "chilpIcon128.png"
    },
    "commands": {
        "copyPageShortlinkToClipboard": {
            "suggested_key": {
                "default": "Alt+Shift+C",
                "mac": "Alt+Shift+C"
            },
            "description": "shorten the current page url and copy the shortlink to the clipboard"
        }
    }
}