Feedly Preview Window

Open Feedly Links in a Preview Window using shortcut key

Feedly Preview Window란 무엇입니까?

Feedly Preview Window은(는) rajington에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open Feedly Links in a Preview Window using shortcut key"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Feedly Preview Window 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Are you a power user on Feedly, but annoyed that the 'v' shortcut key opens articles in a focused tab? This extension fixes that!

After installing this extension, when looking at an article in list view, simply press ; and it will open in a new preview window. Any additional articles will be opened in the same preview window. This is perfect for large or multiple monitors and offers you a full "reading pane" for your articles.

Want to change your shortcut key? Simply visit the options page.

Note: This extension is but a few line changes from Aaron Saray's awesome feedlybackgroundtab extension. This workflow is something I have sought for a long time, but I wouldn't have been able to do if Aaron hadn't open sourced and documented his extension so well.                    

확장 프로그램 기본 정보

이름 Feedly Preview Window Feedly Preview Window
ID oodgcldmocgdhjeibiphdlippflhiiea
공식 URL https://chromewebstore.google.com/detail/feedly-preview-window/oodgcldmocgdhjeibiphdlippflhiiea
설명 Open Feedly Links in a Preview Window using shortcut key
파일 크기 12.29 KB
설치 횟수 358
현재 버전 1.13.1
최근 업데이트 2017-12-09
출시 날짜 2017-12-09
평점 4.00/5 총 5 개의 평점
개발자 rajington
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rajington/feedlybackgroundtab/tree/feedlypreviewwindow
도움말 페이지 URL https://github.com/rajington/feedlybackgroundtab/tree/feedlypreviewwindow
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feedly Preview Window",
    "version": "1.13.1",
    "manifest_version": 2,
    "description": "Open Feedly Links in a Preview Window 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"
    }
}