Feedly Preview Window
Open Feedly Links in a Preview Window using shortcut key
Cos'è Feedly Preview Window?
Feedly Preview Window è un'estensione di Chrome sviluppata da rajington, e la sua funzione principale è "Open Feedly Links in a Preview Window using shortcut key".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Feedly Preview Window
Scarica i file di estensione Feedly Preview Window 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
Are you a power user on Feedly, but annoyed that the 'v' shortcut key opens articles in a focused tab? This extension fixes that!
After installing this extension, when looking at an article in list view, simply press ; and it will open in a new preview window. Any additional articles will be opened in the same preview window. This is perfect for large or multiple monitors and offers you a full "reading pane" for your articles.
Want to change your shortcut key? Simply visit the options page.
Note: This extension is but a few line changes from Aaron Saray's awesome feedlybackgroundtab extension. This workflow is something I have sought for a long time, but I wouldn't have been able to do if Aaron hadn't open sourced and documented his extension so well. Informazioni di Base sull'Estensione
| Nome | |
| ID | oodgcldmocgdhjeibiphdlippflhiiea |
| URL Ufficiale | https://chromewebstore.google.com/detail/feedly-preview-window/oodgcldmocgdhjeibiphdlippflhiiea |
| Descrizione | Open Feedly Links in a Preview Window using shortcut key |
| Dimensione del File | 12.29 KB |
| Conteggio Installazioni | 358 |
| Versione Corrente | 1.13.1 |
| Ultimo Aggiornamento | 2017-12-09 |
| Data di Pubblicazione | 2017-12-09 |
| Valutazione | 4.00/5 Totale 5 Valutazioni |
| Sviluppatore | rajington |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/rajington/feedlybackgroundtab/tree/feedlypreviewwindow |
| URL della Pagina di Aiuto | https://github.com/rajington/feedlybackgroundtab/tree/feedlypreviewwindow |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Feedly Preview Window",
"version": "1.13.1",
"manifest_version": 2,
"description": "Open Feedly Links in a Preview Window using shortcut key",
"content_scripts": [
{
"matches": [
"*:\/\/*.feedly.com\/*"
],
"js": [
"js\/keypress.js"
]
}
],
"background": {
"scripts": [
"js\/background.js"
]
},
"options_page": "options.html",
"permissions": [
"http:\/\/www.feedly.com\/*",
"http:\/\/cloud.feedly.com\/*",
"https:\/\/cloud.feedly.com\/*",
"storage"
],
"minimum_chrome_version": "21",
"icons": {
"128": "images\/icon_128.png"
}
} | |