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 |
Eメール | [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'" } |