Apple Debug
这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序
What is Apple Debug?
Apple Debug is a Chrome extension developed by liuzhen.66, and its main feature is "这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序".
Extension Screenshots
Download Apple Debug Extension CRX File
Download Apple Debug extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序
Extension Basic Information
Name | Apple Debug |
ID | eeankikbpmljgpgloffjlbeakmggoigi |
Official URL | https://chromewebstore.google.com/detail/apple-debug/eeankikbpmljgpgloffjlbeakmggoigi |
Description | 这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序 |
File Size | 6.27 KB |
Installation Count | 146 |
Current Version | 1.13 |
Last Updated | 2022-04-25 |
Publish Date | 2022-01-13 |
Developer | liuzhen.66 |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } |