Feedly Preview Window

Open Feedly Links in a Preview Window using shortcut key

Vad är Feedly Preview Window?

Feedly Preview Window är en Chrome-tillägg utvecklad av rajington, och dess huvudfunktion är "Open Feedly Links in a Preview Window using shortcut key".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Feedly Preview Window-förlängningens CRX-fil

Ladda ner Feedly Preview Window-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Feedly Preview Window Feedly Preview Window
ID oodgcldmocgdhjeibiphdlippflhiiea
Officiell webbadress https://chromewebstore.google.com/detail/feedly-preview-window/oodgcldmocgdhjeibiphdlippflhiiea
Beskrivning Open Feedly Links in a Preview Window using shortcut key
Filstorlek 12.29 KB
Antal Installationer 358
Aktuell Version 1.13.1
Senast Uppdaterad 2017-12-09
Publiceringsdatum 2017-12-09
Betyg 4.00/5 Totalt 5 Betyg
Utvecklare rajington
Betalningssätt free
Tilläggswebbplats https://github.com/rajington/feedlybackgroundtab/tree/feedlypreviewwindow
Hjälpsida URL https://github.com/rajington/feedlybackgroundtab/tree/feedlypreviewwindow
Stödda Språk 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"
    }
}