Bird View
Allow yourself to become more organized and productive by viewing your tasks from a bird's eye view.
Bird View là gì?
Bird View là một tiện ích mở rộng Chrome được phát triển bởi bird.view.develop, và tính năng chính của nó là "Allow yourself to become more organized and productive by viewing your tasks from a bird's eye view.".
Ả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 Bird View
Tải xuống các tệp mở rộng Bird View 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
Source cord: https://github.com/WHB-darrenwang/Bird-View Bird View is a productivity google extension app based on a prototype named BonBon (built in AtomHacks). Procrastination and being unorganized is a big problem for many teenagers and college students. While planners allow students to write down detailed schedules, it is easier for a digital copy to appear on the side when they are on google chrome. With organized checklists broken down into categories, alarms to force pages to open, and a bookmarking system, it allows users to be on task every minute. ---------MENU-------- ***Opening "Bird View" Menu*** -Click the eye icon -Press "Ctrl+Shift+Y" for Windows, Linux, Chrome OS -Press "Command+Shift+Y" for Mac ---------CHECKLIST-------- -Double click the "x" button to delete list -Click on categories or list items to rename and hit ENTER -Check off the checkbox to delete the item -Last opened category will open when you reopen the extension ---------ALARM-------- -Enter the name or message for the alarm -Check off the repeat checkbox if you want the alarm to repeat -Enter a value for either countdown box OR time box -Check off the checkbox next to the alarm if you want to delete it -To force open a page at a certain time, type /os:index where index is the index of the URL item in SAVED -> eg. /os:1 opens the first URL on the saved list ---------SAVED-------- ***Bookmarking a page*** -Press "Ctrl+Shift+K" for Windows, Linux, Chrome OS -Press "Command+Shift+K" for Mac -Click the "x" button to remove the bookmark **DISCLAIMER** Please do not enter too many checklist items or perform a lot of tasks or else the app will crash. There is a quota on the number of calls for the google developer APIs. Lastly, there might be bugs so please email [email protected] if you find one!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bird View |
ID | nedhbmbmfecolmfklhpjilhnbaioelad |
URL Chính Thức | https://chromewebstore.google.com/detail/bird-view/nedhbmbmfecolmfklhpjilhnbaioelad |
Mô tả | Allow yourself to become more organized and productive by viewing your tasks from a bird's eye view. |
Kích Thước Tệp | 28.24 KB |
Số Lần Cài Đặt | 32 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2019-08-12 |
Ngày Phát Hành | 2019-08-11 |
Đánh Giá | 4.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | bird.view.develop |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bird View", "version": "1.1.1", "description": "Allow yourself to become more organized and productive by viewing your tasks from a bird's eye view.", "permissions": [ "declarativeContent", "storage", "commands", "activeTab", "alarms" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "browser_action": { "default_popup": "html\/popup.html", "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" } }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "commands": { "toggle-feature-foo": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "Command+Shift+K", "chromeos": "Ctrl+Shift+K", "linux": "Ctrl+Shift+K" }, "description": "Toggle feature foo" }, "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+Y", "mac": "Command+Shift+Y", "chromeos": "Ctrl+Shift+Y", "linux": "Ctrl+Shift+Y" } } }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'", "manifest_version": 2 } |