Apple Debug
这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序
Apa itu Apple Debug?
Apple Debug adalah ekstensi Chrome yang dikembangkan oleh liuzhen.66, dan fitur utamanya adalah "这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Apple Debug
Unduh file ekstensi Apple Debug dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序
Informasi Dasar Ekstensi
Nama | Apple Debug |
ID | eeankikbpmljgpgloffjlbeakmggoigi |
URL Resmi | https://chromewebstore.google.com/detail/apple-debug/eeankikbpmljgpgloffjlbeakmggoigi |
Deskripsi | 这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序 |
Ukuran File | 6.27 KB |
Jumlah Instalasi | 146 |
Versi Saat Ini | 1.13 |
Terakhir Diperbarui | 2022-04-25 |
Tanggal Publikasi | 2022-01-13 |
Pengembang | liuzhen.66 |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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\/*" ] } |