Feedly Background Tab Open
Open Feedly Links in Background Tab using shortcut key
Cos'è Feedly Background Tab Open?
Feedly Background Tab Open è un'estensione di Chrome sviluppata da k-yogo, e la sua funzione principale è "Open Feedly Links in Background Tab using shortcut key".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Feedly Background Tab Open
Scarica i file di estensione Feedly Background Tab Open 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
In the default Feedly (feedly.com, an RSS Reader Service), article links open in a separate tab when using the "v" shortcut key. However, this does not open the link in the background. With this extension, you can open article links in a separate background tab using the new custom shortcut key. In the version 1.0, it is now possible to customize shortcut key configurations. If you like the extension please support the developer (donation link is put).
Informazioni di Base sull'Estensione
Nome | Feedly Background Tab Open |
ID | knekhffbanfpccociahfjklboipfkecm |
URL Ufficiale | https://chromewebstore.google.com/detail/feedly-background-tab-ope/knekhffbanfpccociahfjklboipfkecm |
Descrizione | Open Feedly Links in Background Tab using shortcut key |
Dimensione del File | 13.95 KB |
Conteggio Installazioni | 98 |
Versione Corrente | 1.24 |
Ultimo Aggiornamento | 2023-05-25 |
Data di Pubblicazione | 2023-03-28 |
Valutazione | 4.50/5 Totale 2 Valutazioni |
Sviluppatore | k-yogo |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/k-yogo/feedly-background-tab-open |
URL della Pagina di Aiuto | https://github.com/k-yogo/feedly-background-tab-open |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Feedly Background Tab Open", "description": "Open Feedly Links in Background Tab using shortcut key", "version": "1.24", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html", "default_icon": "128.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.feedly.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "storage" ] } |