YardiOne App Launcher

YardiOne

YardiOne App Launcher란 무엇입니까?

YardiOne App Launcher은(는) YardiOneDevelopment에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "YardiOne"입니다.

확장 프로그램 스크린샷

screenshot

YardiOne App Launcher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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
도움말 페이지 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'"
}