YardiOne App Launcher
YardiOne
什么是YardiOne App Launcher?
YardiOne App Launcher是由YardiOneDevelopment开发的Chrome扩展程序,该扩展的主要功能是“YardiOne”。
扩展截图
下载YardiOne App Launcher扩展crx文件
下载YardiOne App Launcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Use the YardiOne App Launcher to navigate to your Yardi applications directly from your browser. https://resources.yardi.com/legal/yardi-acceptable-use-policy/
扩展基本信息
名称 | YardiOne App Launcher |
ID | lpkgpgkacgbdkanmoiaeepeigbfgoofo |
官方URL | https://chromewebstore.google.com/detail/yardione-app-launcher/lpkgpgkacgbdkanmoiaeepeigbfgoofo |
简介 | YardiOne |
文件大小 | 705 KB |
安装次数 | 3,932 |
当前版本 | 2.1.4 |
更新时间 | 2021-07-06 |
上架时间 | 2021-04-20 |
评分 | 4.67/5 共6次评分 |
开发者 | YardiOneDevelopment |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://yardi.com |
帮助页面URL | https://clientcentral.yardi.com |
隐私政策页面URL | https://resources.yardi.com/legal/privacy-statement |
支持的语言 | 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'" } |