Feedly Background Tab Open

Open Feedly Links in Background Tab using shortcut key

¿Qué es Feedly Background Tab Open?

Feedly Background Tab Open es una extensión de Chrome desarrollada por k-yogo, y su función principal es "Open Feedly Links in Background Tab using shortcut key".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Feedly Background Tab Open

Descarga archivos de extensión Feedly Background Tab Open en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Feedly Background Tab Open Feedly Background Tab Open
ID knekhffbanfpccociahfjklboipfkecm
URL Oficial https://chromewebstore.google.com/detail/feedly-background-tab-ope/knekhffbanfpccociahfjklboipfkecm
Descripción Open Feedly Links in Background Tab using shortcut key
Tamaño del Archivo 13.95 KB
Cantidad de Instalaciones 98
Versión Actual 1.24
Última Actualización 2023-05-25
Fecha de Publicación 2023-03-28
Calificación 4.50/5 Total de 2 Calificaciones
Desarrollador k-yogo
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/k-yogo/feedly-background-tab-open
URL de la Página de Ayuda https://github.com/k-yogo/feedly-background-tab-open
Idiomas Soportados 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"
    ]
}