Binary translator
Translates Binary text on mouseover
Binary translatorคืออะไร?
Binary translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zuyas และคุณลักษณะหลักของมันคือ "Translates Binary text on mouseover"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Binary translator
ดาวน์โหลดไฟล์ส่วนขยาย Binary translator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | fddleocmcfjhifjcenaijiboiafeajej |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/binary-translator/fddleocmcfjhifjcenaijiboiafeajej |
คำอธิบาย | Translates Binary text on mouseover |
ขนาดไฟล์ | 55.49 KB |
จำนวนการติดตั้ง | 50 |
เวอร์ชันปัจจุบัน | 0.0.3.53 |
อัปเดตครั้งล่าสุด | 2015-07-31 |
วันที่เผยแพร่ | 2015-07-31 |
คะแนน | 1.80/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Zuyas |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Binary translator", "short_name": "btl", "version": "0.0.3.53", "description": "Translates Binary text on mouseover", "icons": { "16": "icon_128.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "jquery.min.js", "script.min.js", "storage.js", "zTip.js" ], "css": [ "style.css", "zTip.css" ] } ], "browser_action": { "icons": [ "icon.png" ], "default_icon": "icon.png", "default_title": "Binary translator", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "storage" ] } |