Feedly Background Tab

Open Feedly Links in Background Tab using shortcut key

Wat is Feedly Background Tab?

Feedly Background Tab is een Chrome-extensie ontwikkeld door Aaron Saray, en de belangrijkste functie is "Open Feedly Links in Background Tab using shortcut key".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Feedly Background Tab

Download Feedly Background Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Feedly Background Tab Feedly Background Tab
ID gjlijkhcebalcchkhgaiflaooghmoegk
Officiële URL https://chromewebstore.google.com/detail/feedly-background-tab/gjlijkhcebalcchkhgaiflaooghmoegk
Beschrijving Open Feedly Links in Background Tab using shortcut key
Bestandsgrootte 15.99 KB
Aantal Installaties 4,009
Huidige Versie 0.13
Laatst Bijgewerkt 2017-08-11
Publicatiedatum 2017-08-11
Beoordeling 3.96/5 Totaal 79 Beoordelingen
Ontwikkelaar Aaron Saray
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/aaronsaray/feedlybackgroundtab
Help Pagina-URL https://github.com/aaronsaray/feedlybackgroundtab
Ondersteunde Talen 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"
    }
}