Read Later
Save tabs to read later and automatically sync between browsers.
Cos'è Read Later?
Read Later è un'estensione di Chrome sviluppata da https://timleland.com, e la sua funzione principale è "Save tabs to read later and automatically sync between browsers.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Read Later
Scarica i file di estensione Read Later 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
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
Informazioni di Base sull'Estensione
Nome | Read Later |
ID | hleifpgbhiladknmecmkpgbgfmlnjhoh |
URL Ufficiale | https://chromewebstore.google.com/detail/read-later/hleifpgbhiladknmecmkpgbgfmlnjhoh |
Descrizione | Save tabs to read later and automatically sync between browsers. |
Dimensione del File | 2.45 MB |
Conteggio Installazioni | 3,107 |
Versione Corrente | 1.7.5 |
Ultimo Aggiornamento | 2020-11-19 |
Data di Pubblicazione | 2020-01-07 |
Valutazione | 3.94/5 Totale 17 Valutazioni |
Sviluppatore | https://timleland.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://timleland.com/read-later-extension/ |
URL della Pagina di Aiuto | https://timleland.com/read-later-extension/ |
URL della Pagina della Politica sulla Privacy | https://t.ly/privacy |
Lingue Supportate | 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" } } } |