Clips

Manage your Pocket list with Google Chrome.

Что такое Clips?

Clips - это расширение Chrome, разработанное http://mvilla.it, и его основная функция - "Manage your Pocket list with Google Chrome.".

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

screenshot
screenshot

Скачать файл CRX расширения Clips

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

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

                        Clips lets you easily and quickly manage items from your Pocket account.

* View all your unread, archived or favorites links in a clutter-free list
* Preview your saved images directly from Clips popup 
* Archive, favorite, re-add or delete a link with a single click
* Quickly filter your links with a few strokes of the keyboard

This extensions is under active development. More features are coming soon.                    

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

Название Clips Clips
ID oajkbeamepngilnlnbdpjgponnghhbki
Официальный URL https://chrome.google.com/webstore/detail/clips/oajkbeamepngilnlnbdpjgponnghhbki
Описание Manage your Pocket list with Google Chrome.
Размер файла 93.95 KB
Количество установок 60
Текущая Версия 0.2
Последнее Обновление 2013-03-21
Дата публикации 2013-03-21
Рейтинг 3.25/5 Всего 8 оценок
Разработчик http://mvilla.it
Тип оплаты free
Официальный сайт расширения http://www.mvilla.it
Поддерживаемые языки en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clips",
    "description": "Manage your Pocket list with Google Chrome.",
    "version": "0.2",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/popup_icon19.png",
            "38": "img\/popup_icon38.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/getpocket.com\/"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/getpocket.com\/*\/pocketChrome"
            ],
            "js": [
                "js\/redirect.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "js\/jquery-1.9.0.min.js",
            "js\/background.js"
        ]
    }
}