Unitify
Convert units to your preferred tongue, in-page.
Vad är Unitify?
Unitify är en Chrome-tillägg utvecklad av Steve Pike, och dess huvudfunktion är "Convert units to your preferred tongue, in-page.".
Tilläggsskärmbilder
Ladda ner Unitify-förlängningens CRX-fil
Ladda ner Unitify-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Unitify translates units and measurements in webpages in-place, so that you don't have to think about converting them yourself. Grundläggande Information om Tillägg
| Namn | |
| ID | amhbhaikpableefmhhongikpbefdcgmf |
| Officiell webbadress | https://chromewebstore.google.com/detail/unitify/amhbhaikpableefmhhongikpbefdcgmf |
| Beskrivning | Convert units to your preferred tongue, in-page. |
| Filstorlek | 63.65 KB |
| Antal Installationer | 38 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2013-03-26 |
| Publiceringsdatum | 2013-03-26 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | Steve Pike |
| Betalningssätt | free |
| Tilläggswebbplats | http://github.com/stringfellow/unitify |
| Hjälpsida URL | http://github.com/stringfellow/unitify/issues |
| Stödda Språk | 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"
]
} | |