Feedly Background Tab Open

Open Feedly Links in Background Tab using shortcut key

Was ist Feedly Background Tab Open?

Feedly Background Tab Open ist eine Chrome-Erweiterung, die von k-yogo entwickelt wurde, und ihr Hauptmerkmal ist "Open Feedly Links in Background Tab using shortcut key".

Erweiterungsscreenshots

screenshot

Feedly Background Tab Open-Erweiterungs-CRX-Datei herunterladen

Laden Sie Feedly Background Tab Open-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Feedly Background Tab Open Feedly Background Tab Open
ID knekhffbanfpccociahfjklboipfkecm
Offizielle URL https://chromewebstore.google.com/detail/feedly-background-tab-ope/knekhffbanfpccociahfjklboipfkecm
Beschreibung Open Feedly Links in Background Tab using shortcut key
Dateigröße 13.95 KB
Installationsanzahl 98
Aktuelle Version 1.24
Letztes Update 2023-05-25
Veröffentlichungsdatum 2023-03-28
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler k-yogo
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/k-yogo/feedly-background-tab-open
Hilfeseite URL https://github.com/k-yogo/feedly-background-tab-open
Unterstützte Sprachen 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"
    ]
}