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
Eメール [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"
    ]
}