YardiOne App Launcher

YardiOne

Co to jest YardiOne App Launcher?

YardiOne App Launcher to rozszerzenie Chrome opracowane przez YardiOneDevelopment, a jego główną funkcją jest „YardiOne”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YardiOne App Launcher

Pobierz pliki rozszerzeń YardiOne App Launcher w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa YardiOne App Launcher YardiOne App Launcher
ID lpkgpgkacgbdkanmoiaeepeigbfgoofo
Oficjalny URL https://chromewebstore.google.com/detail/yardione-app-launcher/lpkgpgkacgbdkanmoiaeepeigbfgoofo
Opis YardiOne
Rozmiar pliku 705 KB
Liczba instalacji 3,932
Aktualna Wersja 2.1.4
Ostatnia Aktualizacja 2021-07-06
Data Publikacji 2021-04-20
Ocena 4.67/5 Łącznie 6 Oceny
Deweloper YardiOneDevelopment
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://yardi.com
Adres URL Strony Pomocy https://clientcentral.yardi.com
Adres URL Strony Polityki Prywatności https://resources.yardi.com/legal/privacy-statement
Obsługiwane Języki 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'"
}