Android Terminal
Access your USB-connected Android terminal without installing ADB
Android Terminalคืออะไร?
Android Terminal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chandler.stimson และคุณลักษณะหลักของมันคือ "Access your USB-connected Android terminal without installing ADB"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Android Terminal
ดาวน์โหลดไฟล์ส่วนขยาย Android Terminal ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension establishes an ADB-compatible connection with your Android device, eliminating the need for any native applications to be installed. It's designed to operate across various desktop environments, whether you're on Windows, Linux, macOS, or Chrome OS. Remarkably, the extension is written entirely in JavaScript, making it free from any native executables. Here are some of the key functionalities offered by this extension: 1. Multiple Terminal Windows: Easily open multiple terminal views to connect with your Android device, facilitating efficient debugging and interaction. 2. File Transfer: Streamline sending and receiving files between your desktop computer and the Android device. 3. Screenshot Capture: Capture screenshots of the current screen view on your Android device and store them on your desktop computer. 4. Application Backup: Perform comprehensive backups of your Android device, including all or select installed applications and their associated data. 5. Debugging with "logcat": Use the "logcat" command to debug your Android device directly from your desktop, enhancing your development capabilities. This extension serves as a compelling alternative to traditional native ADB (Android Debug Bridge) applications, offering a more accessible and platform-agnostic solution. If you already have the native ADB installed and want to explore this extension, ensure there are no ongoing communications with the ADB server by executing the "adb -kill-server" command. Then, refer to the instructions on the extension's homepage to get started seamlessly.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Android Terminal |
ID | infelliamaojdnajfcebdpigbjkbndod |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/android-terminal/infelliamaojdnajfcebdpigbjkbndod |
คำอธิบาย | Access your USB-connected Android terminal without installing ADB |
ขนาดไฟล์ | 214 KB |
จำนวนการติดตั้ง | 258 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2023-10-18 |
วันที่เผยแพร่ | 2023-10-18 |
ผู้พัฒนา | chandler.stimson |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://webextension.org/listing/android-tools.html?from=terminal |
URL หน้าช่วยเหลือ | https://webextension.org/listing/android-tools.html?from=terminal |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.1.0", "name": "Android Terminal", "description": "Access your USB-connected Android terminal without installing ADB", "offline_enabled": true, "permissions": [ "storage", "contextMenus" ], "homepage_url": "https:\/\/webextension.org\/listing\/android-tools.html?from=terminal", "icons": { "16": "\/data\/icons\/16.png", "32": "\/data\/icons\/32.png", "48": "\/data\/icons\/48.png", "64": "\/data\/icons\/64.png", "128": "\/data\/icons\/128.png", "256": "\/data\/icons\/256.png", "512": "\/data\/icons\/512.png" }, "action": [], "background": { "service_worker": "worker.js" }, "commands": { "_execute_action": [] } } |