Watchpocket

This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.

Cos'è Watchpocket?

Watchpocket è un'estensione di Chrome sviluppata da einartryggvi, e la sua funzione principale è "This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.".

Scarica il file CRX dell'estensione Watchpocket

Scarica i file di estensione Watchpocket in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                                            

Informazioni di Base sull'Estensione

Nome Watchpocket Watchpocket
ID jdhebcjihigmkcocnjgfhjkkommeadmh
URL Ufficiale https://chrome.google.com/webstore/detail/watchpocket/jdhebcjihigmkcocnjgfhjkkommeadmh
Descrizione This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.
Dimensione del File 173 KB
Conteggio Installazioni 95
Versione Corrente 0.9.1
Ultimo Aggiornamento 2014-07-02
Data di Pubblicazione 2014-07-02
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore einartryggvi
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Watchpocket",
    "description": "This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.",
    "version": "0.9.1",
    "icons": {
        "128": "img\/appIcon.png"
    },
    "background": {
        "scripts": [
            "js\/vendor\/jquery.min.js",
            "js\/main.js"
        ]
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "https:\/\/getpocket.com\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "bookmarksList.html",
        "default_title": "View bookmarks"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/vendor\/jquery.min.js",
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*",
        "notification.html",
        "auth.html"
    ]
}