YardiOne App Launcher
YardiOne
YardiOne App Launcher là gì?
YardiOne App Launcher là một tiện ích mở rộng Chrome được phát triển bởi YardiOneDevelopment, và tính năng chính của nó là "YardiOne".
Ả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 YardiOne App Launcher
Tải xuống các tệp mở rộng YardiOne App Launcher 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
Use the YardiOne App Launcher to navigate to your Yardi applications directly from your browser. https://resources.yardi.com/legal/yardi-acceptable-use-policy/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YardiOne App Launcher |
ID | lpkgpgkacgbdkanmoiaeepeigbfgoofo |
URL Chính Thức | https://chromewebstore.google.com/detail/yardione-app-launcher/lpkgpgkacgbdkanmoiaeepeigbfgoofo |
Mô tả | YardiOne |
Kích Thước Tệp | 705 KB |
Số Lần Cài Đặt | 3,932 |
Phiên Bản Hiện Tại | 2.1.4 |
Cập Nhật Lần Cuối | 2021-07-06 |
Ngày Phát Hành | 2021-04-20 |
Đánh Giá | 4.67/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | YardiOneDevelopment |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://yardi.com |
URL Trang Trợ Giúp | https://clientcentral.yardi.com |
URL Trang Chính Sách Bảo Mật | https://resources.yardi.com/legal/privacy-statement |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YardiOne App Launcher", "version": "2.1.4", "description": "YardiOne", "manifest_version": 2, "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "96": "icons\/96.png", "128": "icons\/128.png" }, "permissions": [ "tabs", "cookies", "storage", "activeTab", "*:\/\/*.yardione.com\/*" ], "incognito": "split", "browser_action": { "default_title": "YardiOne App Launcher" }, "background": { "scripts": [ "background\/background.js" ] }, "content_scripts": [ { "js": [ "content\/content.js" ], "matches": [ "https:\/\/*.yardione.com\/*" ], "run_at": "document_end", "all_frames": true, "match_about_blank": true }, { "js": [ "popup\/popup.js", "popup\/filter.js" ], "matches": [ "https:\/\/*.yardione.com\/*" ], "run_at": "document_end" } ], "web_accessible_resources": [ "*.html", "images\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |