Feedly Background Tab

Open Feedly Links in Background Tab using shortcut key

Cos'è Feedly Background Tab?

Feedly Background Tab è un'estensione di Chrome sviluppata da Aaron Saray, e la sua funzione principale è "Open Feedly Links in Background Tab using shortcut key".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Feedly Background Tab

Scarica i file di estensione Feedly Background Tab 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 of Feedly - but just wish the 'v' key would open tabs in the background?  This extension is for you!

Now, when you are viewing articles in list view, press ';' and the new tab opens in the background.  Or, if you'd like, customize your shortcut key in the options.  Now supports Cloudly, including PRO!                    

Informazioni di Base sull'Estensione

Nome Feedly Background Tab Feedly Background Tab
ID gjlijkhcebalcchkhgaiflaooghmoegk
URL Ufficiale https://chromewebstore.google.com/detail/feedly-background-tab/gjlijkhcebalcchkhgaiflaooghmoegk
Descrizione Open Feedly Links in Background Tab using shortcut key
Dimensione del File 15.99 KB
Conteggio Installazioni 4,009
Versione Corrente 0.13
Ultimo Aggiornamento 2017-08-11
Data di Pubblicazione 2017-08-11
Valutazione 3.96/5 Totale 79 Valutazioni
Sviluppatore Aaron Saray
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/aaronsaray/feedlybackgroundtab
URL della Pagina di Aiuto https://github.com/aaronsaray/feedlybackgroundtab
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feedly Background Tab",
    "version": "0.13",
    "manifest_version": 2,
    "description": "Open Feedly Links in Background Tab 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"
    }
}