Apple Debug

这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序

Vad är Apple Debug?

Apple Debug är en Chrome-tillägg utvecklad av liuzhen.66, och dess huvudfunktion är "这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序".

Tilläggsskärmbilder

screenshot

Ladda ner Apple Debug-förlängningens CRX-fil

Ladda ner Apple Debug-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序                    

Grundläggande Information om Tillägg

Namn Apple Debug Apple Debug
ID eeankikbpmljgpgloffjlbeakmggoigi
Officiell webbadress https://chromewebstore.google.com/detail/apple-debug/eeankikbpmljgpgloffjlbeakmggoigi
Beskrivning 这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序
Filstorlek 6.27 KB
Antal Installationer 146
Aktuell Version 1.13
Senast Uppdaterad 2022-04-25
Publiceringsdatum 2022-01-13
Utvecklare liuzhen.66
E-post [email protected]
Betalningssätt free
Stödda Språk zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Apple Debug",
    "version": "1.13",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/localhost\/*",
                "*:\/\/aircode.bytedance.net\/*",
                "*:\/\/aircode-boe.bytedance.net\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/localhost\/*",
                "*:\/\/aircode.bytedance.net\/*",
                "*:\/\/aircode-boe.bytedance.net\/*"
            ],
            "resources": [
                "api.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "nativeMessaging",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/aircode.bytedance.net\/*",
        "*:\/\/aircode-boe.bytedance.net\/*",
        "*:\/\/localhost\/*"
    ]
}