YardiOne App Launcher
YardiOne
ما هو YardiOne App Launcher؟
YardiOne App Launcher هو إضافة Chrome تم تطويرها بواسطة YardiOneDevelopment، والميزة الرئيسية لها هي "YardiOne".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YardiOne App Launcher
قم بتنزيل ملفات الامتداد YardiOne App Launcher بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://clientcentral.yardi.com |
عنوان صفحة سياسة الخصوصية | 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'" } |