Feedly Background Tab Open

Open Feedly Links in Background Tab using shortcut key

O que é Feedly Background Tab Open?

Feedly Background Tab Open é uma extensão do Chrome desenvolvida por k-yogo, e sua principal característica é "Open Feedly Links in Background Tab using shortcut key".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Feedly Background Tab Open

Baixe arquivos de extensão Feedly Background Tab Open no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Feedly Background Tab Open Feedly Background Tab Open
ID knekhffbanfpccociahfjklboipfkecm
URL Oficial https://chromewebstore.google.com/detail/feedly-background-tab-ope/knekhffbanfpccociahfjklboipfkecm
Descrição Open Feedly Links in Background Tab using shortcut key
Tamanho do Arquivo 13.95 KB
Contagem de Instalações 98
Versão Atual 1.24
Última Atualização 2023-05-25
Data de Publicação 2023-03-28
Classificação 4.50/5 Total de 2 Avaliações
Desenvolvedor k-yogo
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/k-yogo/feedly-background-tab-open
URL da Página de Ajuda https://github.com/k-yogo/feedly-background-tab-open
Idiomas Suportados 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"
    ]
}