Feedly Background Tab Open

Open Feedly Links in Background Tab using shortcut key

Hvad er Feedly Background Tab Open?

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

Udvidelsesskærmbilleder

screenshot

Download Feedly Background Tab Open-udvidelses-CRX-fil

Download Feedly Background Tab Open-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

                        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).                    

Grundlæggende oplysninger om udvidelsen

Navn Feedly Background Tab Open Feedly Background Tab Open
ID knekhffbanfpccociahfjklboipfkecm
Officiel URL https://chromewebstore.google.com/detail/feedly-background-tab-ope/knekhffbanfpccociahfjklboipfkecm
Beskrivelse Open Feedly Links in Background Tab using shortcut key
Filstørrelse 13.95 KB
Antal Installationer 98
Nuværende Version 1.24
Senest Opdateret 2023-05-25
Udgivelsesdato 2023-03-28
Bedømmelse 4.50/5 Samlet 2 Bedømmelser
Udvikler k-yogo
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/k-yogo/feedly-background-tab-open
Hjælpeside-URL https://github.com/k-yogo/feedly-background-tab-open
Understøttede Sprog 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"
    ]
}