Miles Or Kilometers

This extension converts from and in to Miles or Kilometers on the fly, depending on the user's choice.

Miles Or Kilometersคืออะไร?

Miles Or Kilometers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.jovcevski.mk และคุณลักษณะหลักของมันคือ "This extension converts from and in to Miles or Kilometers on the fly, depending on the user's choice."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Miles Or Kilometers

ดาวน์โหลดไฟล์ส่วนขยาย Miles Or Kilometers ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Do not bother to convert length measurements while you surf the web, this extension will do that for you!

    Version 1.3:
New version changes:

-fixed commas as thousands separators (100,000.00). 

After installing the extension from the Google web store you'll get an icon on the right of the address bar, just click on it and  follow this 2 simple steps. Enjoy the benefits it offers:

Choose the length measurement that you know – Miles or Kilometers.
Click SAVE and store the settings on the cloud.

The extension will then convert any measurement in Miles or Kilometers you'll encounter while you surf the web.

The benefits Of the extension:

Never bother with Miles or Kilometers.
Never lose your settings!  
The extension is syncable – it uses the chrome.storage API to store and retrieve changes to your data.
Use the – ”Do not run on this page“ option to select which domain the extension should not run the converter.
The code is light, it doesn't require much of the browser's memory and CPU time.
No user data is shared by me or any other company !
Easy preview of the settings – the icon will change  for Miles mi or Kilometers km based on your preferences.

Support and about page: http://jovcevski.mk/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Miles Or Kilometers Miles Or Kilometers
ID jbkgnphohjaeflihpcjnkemkbcmmcgji
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/miles-or-kilometers/jbkgnphohjaeflihpcjnkemkbcmmcgji
คำอธิบาย This extension converts from and in to Miles or Kilometers on the fly, depending on the user's choice.
ขนาดไฟล์ 45.5 KB
จำนวนการติดตั้ง 212
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2014-12-09
วันที่เผยแพร่ 2014-12-09
คะแนน 4.80/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา https://www.jovcevski.mk
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.jovcevski.mk
URL หน้าช่วยเหลือ http://jovcevski.mk/miles-or-kilometers-the-google-chrome-extension/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Miles Or Kilometers",
    "description": "This extension converts from and in to Miles or Kilometers on the fly, depending on the user's choice.",
    "version": "1.3",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "browser_action": {
        "default_icon": "images\/16.png",
        "default_popup": "options.html",
        "default_title": "Miles or Kilometers converter - click for options"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js"
            ],
            "run_at": "document_end"
        }
    ]
}