Save to Pocket (mini)

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

Co to jest Save to Pocket (mini)?

Save to Pocket (mini) to rozszerzenie Chrome opracowane przez evmar, a jego główną funkcją jest „Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Save to Pocket (mini)

Pobierz pliki rozszerzeń Save to Pocket (mini) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Save to Pocket (mini) Save to Pocket (mini)
ID calnfcidhlhdmmmnicdpddbmmjmfohem
Oficjalny URL https://chromewebstore.google.com/detail/save-to-pocket-mini/calnfcidhlhdmmmnicdpddbmmjmfohem
Opis Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.
Rozmiar pliku 8.66 KB
Liczba instalacji 1,016
Aktualna Wersja 1
Ostatnia Aktualizacja 2014-08-08
Data Publikacji 2014-08-08
Ocena 4.69/5 Łącznie 16 Oceny
Deweloper evmar
Typ Płatności free
Strona Rozszerzenia https://github.com/martine/pocket-mini
Obsługiwane Języki 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
}