YardiOne App Launcher
YardiOne
Wat is YardiOne App Launcher?
YardiOne App Launcher is een Chrome-extensie ontwikkeld door YardiOneDevelopment, en de belangrijkste functie is "YardiOne".
Extensie Screenshots
Download het CRX-bestand van de extensie YardiOne App Launcher
Download YardiOne App Launcher-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Use the YardiOne App Launcher to navigate to your Yardi applications directly from your browser. https://resources.yardi.com/legal/yardi-acceptable-use-policy/
Basisinformatie over de Extensie
Naam | YardiOne App Launcher |
ID | lpkgpgkacgbdkanmoiaeepeigbfgoofo |
Officiële URL | https://chromewebstore.google.com/detail/yardione-app-launcher/lpkgpgkacgbdkanmoiaeepeigbfgoofo |
Beschrijving | YardiOne |
Bestandsgrootte | 705 KB |
Aantal Installaties | 3,932 |
Huidige Versie | 2.1.4 |
Laatst Bijgewerkt | 2021-07-06 |
Publicatiedatum | 2021-04-20 |
Beoordeling | 4.67/5 Totaal 6 Beoordelingen |
Ontwikkelaar | YardiOneDevelopment |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://yardi.com |
Help Pagina-URL | https://clientcentral.yardi.com |
URL van de Privacybeleid Pagina | https://resources.yardi.com/legal/privacy-statement |
Ondersteunde Talen | 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'" } |