Feedly Background Tab Open
Open Feedly Links in Background Tab using shortcut key
Feedly Background Tab Open là gì?
Feedly Background Tab Open là một tiện ích mở rộng Chrome được phát triển bởi k-yogo, và tính năng chính của nó là "Open Feedly Links in Background Tab 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 Background Tab Open
Tải xuống các tệp mở rộng Feedly Background Tab Open 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
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Feedly Background Tab Open |
ID | knekhffbanfpccociahfjklboipfkecm |
URL Chính Thức | https://chromewebstore.google.com/detail/feedly-background-tab-ope/knekhffbanfpccociahfjklboipfkecm |
Mô tả | Open Feedly Links in Background Tab using shortcut key |
Kích Thước Tệp | 13.95 KB |
Số Lần Cài Đặt | 98 |
Phiên Bản Hiện Tại | 1.24 |
Cập Nhật Lần Cuối | 2023-05-25 |
Ngày Phát Hành | 2023-03-28 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | k-yogo |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/k-yogo/feedly-background-tab-open |
URL Trang Trợ Giúp | https://github.com/k-yogo/feedly-background-tab-open |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |