YardiOne App Launcher

YardiOne

YardiOne App Launcherคืออะไร?

YardiOne App Launcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย YardiOneDevelopment และคุณลักษณะหลักของมันคือ "YardiOne"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YardiOne App Launcher

ดาวน์โหลดไฟล์ส่วนขยาย YardiOne App Launcher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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'"
}