YardiOne App Launcher

YardiOne

What is YardiOne App Launcher?

YardiOne App Launcher is a Chrome extension developed by YardiOneDevelopment, and its main feature is "YardiOne".

Extension Screenshots

screenshot

Download YardiOne App Launcher Extension CRX File

Download YardiOne App Launcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Use the YardiOne App Launcher to navigate to your Yardi applications directly from your browser.
https://resources.yardi.com/legal/yardi-acceptable-use-policy/                    

Extension Basic Information

Name YardiOne App Launcher YardiOne App Launcher
ID lpkgpgkacgbdkanmoiaeepeigbfgoofo
Official URL https://chromewebstore.google.com/detail/yardione-app-launcher/lpkgpgkacgbdkanmoiaeepeigbfgoofo
Description YardiOne
File Size 705 KB
Installation Count 3,932
Current Version 2.1.4
Last Updated 2021-07-06
Publish Date 2021-04-20
Rating 4.67/5 Total 6 Ratings
Developer YardiOneDevelopment
Email [email protected]
Payment Type free
Extension Website https://yardi.com
Help Page URL https://clientcentral.yardi.com
Privacy Policy Page URL https://resources.yardi.com/legal/privacy-statement
Supported Languages 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'"
}