GASE Google AppScript Editor

AppScript Editor Google

GASE Google AppScript Editorคืออะไร?

GASE Google AppScript Editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oCancelada.dev และคุณลักษณะหลักของมันคือ "AppScript Editor Google"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GASE Google AppScript Editor

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

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

                        ---- GoogleAppScriptEditor - G.A.S.E ----

Extensión que agrega funcionalidades para el editor de Google de AppScript

1. Iconos para los archivos y carpetas del proyecto.
2. Atajo de teclado ( Alt+J ) para retroceder en el árbol de archivos.
3. Atajo de teclado ( Alt+K ) para avanzar en el árbol de archivos.
4. Selección de temas para modificar la interfaz del editor.
5. mas..                    

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

ชื่อ GASE Google AppScript Editor GASE Google AppScript Editor
ID lefcemnilieamgifcegilmkaclmhakfc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gase-google-appscript-edi/lefcemnilieamgifcegilmkaclmhakfc
คำอธิบาย AppScript Editor Google
ขนาดไฟล์ 34.88 KB
จำนวนการติดตั้ง 55
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-10-02
วันที่เผยแพร่ 2022-10-02
ผู้พัฒนา oCancelada.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sCancelada/GoogleAppScriptEditor-GASE
URL หน้าช่วยเหลือ https://ocancelada.dev/proyectos/gase.html
ภาษาที่รองรับ es-419
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GASE Google AppScript Editor",
    "description": "AppScript Editor Google",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "16": "code\/img\/appScriptIcon16.png",
        "32": "code\/img\/appScriptIcon32.png",
        "48": "code\/img\/appScriptIcon48.png",
        "128": "code\/img\/appScriptIcon128.png"
    },
    "background": {
        "service_worker": "code\/js\/sw.js"
    },
    "action": {
        "default_title": "G.A.S.E - Editor",
        "default_popup": "code\/html\/popup.html",
        "default_icon": {
            "16": "code\/img\/appScriptIcon16.png",
            "32": "code\/img\/appScriptIcon32.png",
            "48": "code\/img\/appScriptIcon48.png",
            "128": "code\/img\/appScriptIcon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/script.google.com\/*"
            ],
            "js": [
                "code\/js\/main_functions.js",
                "code\/js\/keys.js",
                "code\/js\/gas.js"
            ],
            "css": [
                "code\/css\/appScriptIDE.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "code\/css\/appScriptIDE.css",
                "code\/css\/guna.css",
                "code\/css\/light_theme.css",
                "code\/js\/gas.js",
                "code\/js\/keys.js",
                "code\/js\/main_functions.js",
                "code\/html\/footer_credits.html",
                "code\/img\/appScriptIcon48.png"
            ],
            "matches": [
                "https:\/\/script.google.com\/*"
            ]
        }
    ],
    "permissions": [],
    "host_permissions": [
        "https:\/\/script.google.com\/*"
    ]
}