Extend AppSheet

Boost productivity and clear the clutter

Extend AppSheetคืออะไร?

Extend AppSheet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://apportunities.ca และคุณลักษณะหลักของมันคือ "Boost productivity and clear the clutter"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Extend AppSheet

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

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

                        Stay organized with app grouping and editor improvements.

This extension improves the AppSheet developer experience by adding a monospaced font to the editor fields, and collapsing the left side bar to increase screen space. It also helps developers stay organized by enabling creation of custom app groups and sorting on their My Apps page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Extend AppSheet Extend AppSheet
ID okmajcnbngimcfckkmdpdmgaabhbbfog
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/extend-appsheet/okmajcnbngimcfckkmdpdmgaabhbbfog
คำอธิบาย Boost productivity and clear the clutter
ขนาดไฟล์ 153 KB
จำนวนการติดตั้ง 5,000
เวอร์ชันปัจจุบัน 0.5.2
อัปเดตครั้งล่าสุด 2021-12-16
วันที่เผยแพร่ 2021-06-21
คะแนน 4.57/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา https://apportunities.ca
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Extend AppSheet",
    "version": "0.5.2",
    "description": "Boost productivity and clear the clutter",
    "icons": {
        "16": "ico\/ico_16.png",
        "48": "ico\/ico_48.png",
        "128": "ico\/ico_128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "css": [
                "modules\/modal.css"
            ],
            "js": [
                "modules\/init.js"
            ],
            "matches": [
                "https:\/\/www.appsheet.com\/Template*",
                "https:\/\/www.appsheet.com\/template*"
            ],
            "run_at": "document_end"
        },
        {
            "css": [
                "modules\/appEditor\/lib\/codemirror.css",
                "modules\/appEditor\/lib\/material.css"
            ],
            "js": [
                "modules\/appEditor\/appEditor.js",
                "modules\/appEditor\/lib\/codemirror.js",
                "modules\/appEditor\/lib\/matchbrackets.js",
                "modules\/appEditor\/lib\/closebrackets.js"
            ],
            "matches": [
                "https:\/\/www.appsheet.com\/Template\/AppDef*",
                "https:\/\/www.appsheet.com\/template\/AppDef*"
            ],
            "run_at": "document_end"
        },
        {
            "css": [
                "modules\/myApps\/styles.css"
            ],
            "js": [
                "modules\/myApps\/myApps.js"
            ],
            "matches": [
                "https:\/\/www.appsheet.com\/Template\/Apps",
                "https:\/\/www.appsheet.com\/template\/Apps"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "modules\/*"
            ]
        }
    ]
}