Feedly Preview Window
Open Feedly Links in a Preview Window using shortcut key
Feedly Preview Window là gì?
Feedly Preview Window là một tiện ích mở rộng Chrome được phát triển bởi rajington, và tính năng chính của nó là "Open Feedly Links in a Preview Window using shortcut key".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Feedly Preview Window
Tải xuống các tệp mở rộng Feedly Preview Window dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Feedly Preview Window |
ID | oodgcldmocgdhjeibiphdlippflhiiea |
URL Chính Thức | https://chromewebstore.google.com/detail/feedly-preview-window/oodgcldmocgdhjeibiphdlippflhiiea |
Mô tả | Open Feedly Links in a Preview Window using shortcut key |
Kích Thước Tệp | 12.29 KB |
Số Lần Cài Đặt | 358 |
Phiên Bản Hiện Tại | 1.13.1 |
Cập Nhật Lần Cuối | 2017-12-09 |
Ngày Phát Hành | 2017-12-09 |
Đánh Giá | 4.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | rajington |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/rajington/feedlybackgroundtab/tree/feedlypreviewwindow |
URL Trang Trợ Giúp | https://github.com/rajington/feedlybackgroundtab/tree/feedlypreviewwindow |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |