Save to Pocket (mini)

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

¿Qué es Save to Pocket (mini)?

Save to Pocket (mini) es una extensión de Chrome desarrollada por evmar, y su función principal es "Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Save to Pocket (mini)

Descarga archivos de extensión Save to Pocket (mini) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Save to Pocket (mini) Save to Pocket (mini)
ID calnfcidhlhdmmmnicdpddbmmjmfohem
URL Oficial https://chromewebstore.google.com/detail/save-to-pocket-mini/calnfcidhlhdmmmnicdpddbmmjmfohem
Descripción Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.
Tamaño del Archivo 8.66 KB
Cantidad de Instalaciones 1,016
Versión Actual 1
Última Actualización 2014-08-08
Fecha de Publicación 2014-08-08
Calificación 4.69/5 Total de 16 Calificaciones
Desarrollador evmar
Tipo de Pago free
Sitio Web de la Extensión https://github.com/martine/pocket-mini
Idiomas Soportados 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
}