Binary translator
Translates Binary text on mouseover
什麼是Binary translator?
Binary translator是由Zuyas開發的Chrome擴展程式,該擴展的主要功能是“Translates Binary text on mouseover”。
擴展截圖
下載Binary translator擴展crx文件
下載Binary translator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
擴展基本資訊
名稱 | |
ID | fddleocmcfjhifjcenaijiboiafeajej |
官方網址 | 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" ] } |