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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}