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

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

확장 프로그램 사용 설명서

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