Feedly Background Tab

Open Feedly Links in Background Tab using shortcut key

什么是Feedly Background Tab?

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

扩展截图

screenshot

下载Feedly Background Tab扩展crx文件

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

扩展使用说明

                        Are you a power user of Feedly - but just wish the 'v' key would open tabs in the background?  This extension is for you!

Now, when you are viewing articles in list view, press ';' and the new tab opens in the background.  Or, if you'd like, customize your shortcut key in the options.  Now supports Cloudly, including PRO!                    

扩展基本信息

名称 Feedly Background Tab Feedly Background Tab
ID gjlijkhcebalcchkhgaiflaooghmoegk
官方URL https://chromewebstore.google.com/detail/feedly-background-tab/gjlijkhcebalcchkhgaiflaooghmoegk
简介 Open Feedly Links in Background Tab using shortcut key
文件大小 15.99 KB
安装次数 4,009
当前版本 0.13
更新时间 2017-08-11
上架时间 2017-08-11
评分 3.96/5 共79次评分
开发者 Aaron Saray
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/aaronsaray/feedlybackgroundtab
帮助页面URL https://github.com/aaronsaray/feedlybackgroundtab
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feedly Background Tab",
    "version": "0.13",
    "manifest_version": 2,
    "description": "Open Feedly Links in Background Tab using shortcut key",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.feedly.com\/*"
            ],
            "js": [
                "js\/keypress.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "http:\/\/www.feedly.com\/*",
        "http:\/\/cloud.feedly.com\/*",
        "https:\/\/cloud.feedly.com\/*",
        "storage"
    ],
    "minimum_chrome_version": "21",
    "icons": {
        "128": "images\/icon_128.png"
    }
}