Feedly Background Tab Open

Open Feedly Links in Background Tab using shortcut key

什么是Feedly Background Tab Open?

Feedly Background Tab Open是由k-yogo开发的Chrome扩展程序,该扩展的主要功能是“Open Feedly Links in Background Tab using shortcut key”。

扩展截图

screenshot

下载Feedly Background Tab Open扩展crx文件

下载Feedly Background Tab Open扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Feedly Background Tab Open Feedly Background Tab Open
ID knekhffbanfpccociahfjklboipfkecm
官方URL https://chromewebstore.google.com/detail/feedly-background-tab-ope/knekhffbanfpccociahfjklboipfkecm
简介 Open Feedly Links in Background Tab using shortcut key
文件大小 13.95 KB
安装次数 98
当前版本 1.24
更新时间 2023-05-25
上架时间 2023-03-28
评分 4.50/5 共2次评分
开发者 k-yogo
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/k-yogo/feedly-background-tab-open
帮助页面URL https://github.com/k-yogo/feedly-background-tab-open
支持的语言 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"
    ]
}