Simple Pocket
Simple Pocket Extension for Chrome - The simplest way to save web pages for read it later
Co to jest Simple Pocket?
Simple Pocket to rozszerzenie Chrome opracowane przez better read it later, a jego główną funkcją jest „Simple Pocket Extension for Chrome - The simplest way to save web pages for read it later”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Simple Pocket
Pobierz pliki rozszerzeń Simple Pocket 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
Add page to "read it later" service by simple way. This addon DO NOT break your HOME PAGE. DO NOT inject in to each page and DO NOT spy your usual browsing. It just add URL to GetPocket only when you click on the button. That's is! Feel free to touch me in comments and making 5 starts ;) Thanks.
Podstawowe informacje o rozszerzeniu
Nazwa | Simple Pocket |
ID | kkmmcilocakhceaeelbgmmigimjlhcmb |
Oficjalny URL | https://chromewebstore.google.com/detail/simple-pocket/kkmmcilocakhceaeelbgmmigimjlhcmb |
Opis | Simple Pocket Extension for Chrome - The simplest way to save web pages for read it later |
Rozmiar pliku | 74.48 KB |
Liczba instalacji | 195 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2017-03-19 |
Data Publikacji | 2017-03-19 |
Ocena | 4.56/5 Łącznie 9 Oceny |
Deweloper | better read it later |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Pocket", "version": "1.1", "manifest_version": 2, "description": "__MSG_extDescription__", "default_locale": "en", "background": { "persistent": true, "scripts": [ "js\/jquery-2.1.1.min.js", "js\/utils.js", "js\/all.js" ] }, "browser_action": { "default_icon": { "16": "images\/browser-action-icon.png" }, "default_title": "__MSG_browserActionTitle__" }, "permissions": [ "tabs", "contextMenus", "cookies", "notifications", "https:\/\/readitlaterlist.com\/", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "images\/icon128.png", "256": "images\/icon256.png" }, "content_scripts": [ { "matches": [ "*:\/\/getpocket.com\/extension_login_success" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/utils.js", "js\/auth-login.js" ] }, { "matches": [ "*:\/\/getpocket.com\/login?e=4" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/utils.js", "js\/auth-logout.js" ] } ], "web_accessible_resources": [ "images\/error.png", "images\/success.png" ] } |