Send to Batch Speed
Adds a context menu option to send any page to Batch Speed
Send to Batch Speedคืออะไร?
Send to Batch Speed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://defaced.dev และคุณลักษณะหลักของมันคือ "Adds a context menu option to send any page to Batch Speed"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Send to Batch Speed
ดาวน์โหลดไฟล์ส่วนขยาย Send to Batch Speed ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Quickly launch a Batch Speed (https://batchspeed.com/) test for any site.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Send to Batch Speed |
ID | djfcicmppldabihiegechhlilfglhebj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/send-to-batch-speed/djfcicmppldabihiegechhlilfglhebj |
คำอธิบาย | Adds a context menu option to send any page to Batch Speed |
ขนาดไฟล์ | 4.17 KB |
จำนวนการติดตั้ง | 92 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2020-09-23 |
วันที่เผยแพร่ | 2020-09-23 |
ผู้พัฒนา | https://defaced.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/workeffortwaste/send-to-batchspeed |
URL หน้าช่วยเหลือ | https://github.com/workeffortwaste/send-to-batchspeed |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Send to Batch Speed", "version": "1.0", "description": "Adds a context menu option to send any page to Batch Speed", "permissions": [ "activeTab", "contextMenus" ], "background": { "scripts": [ "context.js" ], "persistent": true }, "icons": { "48": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/batchspeed.com\/?*" ], "js": [ "script.js" ] } ] } |