WunderlistNavigator
Quickly navigate between wunderlist lists
WunderlistNavigator là gì?
WunderlistNavigator là một tiện ích mở rộng Chrome được phát triển bởi Pedro Catré, và tính năng chính của nó là "Quickly navigate between wunderlist lists".
Ả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 WunderlistNavigator
Tải xuống các tệp mở rộng WunderlistNavigator 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
Quickly switch between wunderlist lists on the wunderlist web application by opening the search bar and looking for your lists. - Press **COMMAND+SHIFT+b** or **CTRL+SHIFT+b** to activate and start typing the keywords to filter lists - Use `Enter` key or mouse click to jump to list You can also define your custom shortcut in chrome://extensions/ > Keyboard shortcuts Note: after installing, you will have to refresh the already opened wunderlist web app
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WunderlistNavigator |
ID | fjpdombpmbjjdmcbdkkpefkjokgmffah |
URL Chính Thức | https://chromewebstore.google.com/detail/wunderlistnavigator/fjpdombpmbjjdmcbdkkpefkjokgmffah |
Mô tả | Quickly navigate between wunderlist lists |
Kích Thước Tệp | 238 KB |
Số Lần Cài Đặt | 58 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2016-10-13 |
Ngày Phát Hành | 2016-10-13 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Pedro Catré |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/pedrocatre/wunderlist-navigator |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WunderlistNavigator", "short_name": "WunderlistNavigator", "version": "1.0.0", "manifest_version": 2, "author": "Pedro Catr\u00e9", "description": "Quickly navigate between wunderlist lists", "homepage_url": "https:\/\/github.com\/pedrocatre\/wunderlist-navigator", "icons": { "16": "assets\/icons\/icon16.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "permissions": [ "https:\/\/www.wunderlist.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.wunderlist.com\/*" ], "css": [ "assets\/css\/wunderlist-navigator.css" ] }, { "matches": [ "https:\/\/www.wunderlist.com\/*" ], "js": [ "assets\/lib\/sanitize-html.js", "assets\/lib\/jquery.js", "wunderlist-navigator.js" ] } ], "browser_action": { "default_title": "WunderlistNavigator", "default_icon": "assets\/icons\/icon128.png" }, "commands": { "open-wunderlist-navigator": { "suggested_key": { "default": "Ctrl+Shift+B", "mac": "Command+Shift+B" }, "description": "Opens wunderlist navigator search input" } } } |