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
官方網址 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"
    }
}