Feedly Background Tab

Open Feedly Links in Background Tab using shortcut key

Hvad er Feedly Background Tab?

Feedly Background Tab er en Chrome-udvidelse udviklet af Aaron Saray, og dens hovedfunktion er "Open Feedly Links in Background Tab using shortcut key".

Udvidelsesskærmbilleder

screenshot

Download Feedly Background Tab-udvidelses-CRX-fil

Download Feedly Background Tab-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Feedly Background Tab Feedly Background Tab
ID gjlijkhcebalcchkhgaiflaooghmoegk
Officiel URL https://chromewebstore.google.com/detail/feedly-background-tab/gjlijkhcebalcchkhgaiflaooghmoegk
Beskrivelse Open Feedly Links in Background Tab using shortcut key
Filstørrelse 15.99 KB
Antal Installationer 4,009
Nuværende Version 0.13
Senest Opdateret 2017-08-11
Udgivelsesdato 2017-08-11
Bedømmelse 3.96/5 Samlet 79 Bedømmelser
Udvikler Aaron Saray
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/aaronsaray/feedlybackgroundtab
Hjælpeside-URL https://github.com/aaronsaray/feedlybackgroundtab
Understøttede Sprog 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"
    }
}