Read Later
Save tabs to read later and automatically sync between browsers.
Co to jest Read Later?
Read Later to rozszerzenie Chrome opracowane przez https://timleland.com, a jego główną funkcją jest „Save tabs to read later and automatically sync between browsers.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Read Later
Pobierz pliki rozszerzeń Read Later 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
When you find an article that is worth reading but do not have time, ReadLater allows you to save the tab for another time. - Your saved tabs will automatically sync between computers - Use the shortcut key (ctrl + shift + S) to save links without opening the extension. - Keep your browser fast by limiting the number of open tabs - Right on any link to add it to ReadLater - Save hundreds of links More info: https://timleland.com/read-later-extension/ Source Code: https://github.com/timleland/ReadLaterCE
Podstawowe informacje o rozszerzeniu
Nazwa | Read Later |
ID | hleifpgbhiladknmecmkpgbgfmlnjhoh |
Oficjalny URL | https://chromewebstore.google.com/detail/read-later/hleifpgbhiladknmecmkpgbgfmlnjhoh |
Opis | Save tabs to read later and automatically sync between browsers. |
Rozmiar pliku | 2.45 MB |
Liczba instalacji | 3,107 |
Aktualna Wersja | 1.7.5 |
Ostatnia Aktualizacja | 2020-11-19 |
Data Publikacji | 2020-01-07 |
Ocena | 3.94/5 Łącznie 17 Oceny |
Deweloper | https://timleland.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://timleland.com/read-later-extension/ |
Adres URL Strony Pomocy | https://timleland.com/read-later-extension/ |
Adres URL Strony Polityki Prywatności | https://t.ly/privacy |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Read Later", "homepage_url": "https:\/\/timleland.com\/read-later-extension\/", "short_name": "RL", "description": "Save tabs to read later and automatically sync between browsers.", "permissions": [ "storage", "tabs", "contextMenus" ], "background": { "scripts": [ "assets\/js\/jquery.min.js", "assets\/js\/jquery.timeago.min.js", "assets\/js\/badge.js", "assets\/js\/scripts.js", "assets\/js\/backgroundScript.js" ] }, "version": "1.7.5", "browser_action": { "default_title": "Read Later", "default_icon": "assets\/img\/icon.png", "default_popup": "popup.html" }, "icons": { "16": "assets\/img\/icon.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "commands": { "save-tab": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "Command+Shift+S" }, "description": "Save Tab" } } } |