Unitify
Convert units to your preferred tongue, in-page.
什麼是Unitify?
Unitify是由Steve Pike開發的Chrome擴展程式,該擴展的主要功能是“Convert units to your preferred tongue, in-page.”。
擴展截圖
下載Unitify擴展crx文件
下載Unitify擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Unitify translates units and measurements in webpages in-place, so that you don't have to think about converting them yourself. 擴展基本資訊
| 名稱 | |
| ID | amhbhaikpableefmhhongikpbefdcgmf |
| 官方網址 | https://chromewebstore.google.com/detail/unitify/amhbhaikpableefmhhongikpbefdcgmf |
| 簡介 | Convert units to your preferred tongue, in-page. |
| 檔案大小 | 63.65 KB |
| 安裝次數 | 38 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2013-03-26 |
| 上架時間 | 2013-03-26 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | Steve Pike |
| 付費類型 | free |
| 擴展官網 | http://github.com/stringfellow/unitify |
| 說明頁面URL | http://github.com/stringfellow/unitify/issues |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Unitify",
"description": "Convert units to your preferred tongue, in-page.",
"version": "1.0.1",
"options_page": "options.html",
"browser_action": {
"default_icon": "globe.png",
"default_popup": "options.html"
},
"icons": {
"128": "globe.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"jquery-1.9.1.min.js",
"underscore-min.js",
"unitify.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage"
]
} | |