ChronoMouse

Instantly displays local time information, performs easy Google Searches.

ChronoMouseคืออะไร?

ChronoMouse เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ChronoMouse และคุณลักษณะหลักของมันคือ "Instantly displays local time information, performs easy Google Searches."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension will instantly display (via Chrome Notification) the current time, time zone, and location for any US/Canada area code, or for any country calling code.

Using your cursor, highlight an area code or country calling code to display the local time. Click on the notification to see the Wikipedia article on the location.

Great for sales, support, and heavy phone users!

You can also perform quick Google Search for any highlighted term - simply press and hold the ALT key, use the cursor to highlight the text you wish to search on Google, then release your click while still holding ALT. (You may release ALT after the search is performed.) You may disable this in settings.

Please leave a review, or drop a line at [email protected].

-------------------------

Privacy and Use of Data - See www.chronomouse.com                    

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

ชื่อ ChronoMouse ChronoMouse
ID bjpokniooffiidjfhdofmalkpplpfeoa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chronomouse/bjpokniooffiidjfhdofmalkpplpfeoa
คำอธิบาย Instantly displays local time information, performs easy Google Searches.
ขนาดไฟล์ 706 KB
จำนวนการติดตั้ง 4,113
เวอร์ชันปัจจุบัน 2.4.6
อัปเดตครั้งล่าสุด 2021-04-22
วันที่เผยแพร่ 2020-02-29
คะแนน 4.67/5 รวมทั้งหมด 45 คะแนน
ผู้พัฒนา ChronoMouse
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://docs.google.com/forms/d/1-j1ggru8yet5gMF56vxQQBBUfwwH6lAg7hg77cyfGSw/viewform?usp=send_form
URL หน้านโยบายความเป็นส่วนตัว http://chronomouse.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ChronoMouse",
    "description": "Instantly displays local time information, performs easy Google Searches.",
    "version": "2.4.6",
    "browser_action": {
        "default_icon": "mouse.png",
        "default_popup": "popup.html",
        "default_title": "ChronoMouse"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "https:\/\/www.google.com\/calendar"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "codearrays.js",
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "48": "mouse48.png",
        "128": "mouse128.png"
    },
    "permissions": [
        "activeTab",
        "notifications",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}