Save to Pocket (mini)

Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.

Что такое Save to Pocket (mini)?

Save to Pocket (mini) - это расширение Chrome, разработанное evmar, и его основная функция - "Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.".

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

screenshot

Скачать файл CRX расширения Save to Pocket (mini)

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

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

                        I think Pocket is great, but I don't like how their Chrome extension requires so many permissions.  (It even makes use of those permissions to e.g. modify the Hacker News page.  I appreciate this can be turned off via their settings but I'd prefer it didn't even have the capability.)

This extension is the minimal code to auth into Pocket and save URLs into it.

Read the source here:
https://github.com/martine/pocket-mini

For more features, use the official Pocket extension:
https://chrome.google.com/webstore/detail/save-to-pocket/niloccemoadcdkdjlinkgdfekeahmflj                    

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

Название Save to Pocket (mini) Save to Pocket (mini)
ID calnfcidhlhdmmmnicdpddbmmjmfohem
Официальный URL https://chromewebstore.google.com/detail/save-to-pocket-mini/calnfcidhlhdmmmnicdpddbmmjmfohem
Описание Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.
Размер файла 8.66 KB
Количество установок 1,016
Текущая Версия 1
Последнее Обновление 2014-08-08
Дата публикации 2014-08-08
Рейтинг 4.69/5 Всего 16 оценок
Разработчик evmar
Тип оплаты free
Официальный сайт расширения https://github.com/martine/pocket-mini
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save to Pocket (mini)",
    "description": "Adds a toolbar button to save the current page to Pocket, without requiring the \"all data\" or \"all websites\" permissions.",
    "version": "1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Add to Pocket",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/getpocket.com\/"
    ],
    "web_accessible_resources": [
        "auth.html"
    ],
    "manifest_version": 2
}