ChronoMouse

Instantly displays local time information, performs easy Google Searches.

什麼是ChronoMouse?

ChronoMouse是由ChronoMouse開發的Chrome擴展程式,該擴展的主要功能是“Instantly displays local time information, performs easy Google Searches.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載ChronoMouse擴展crx文件

下載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
官方網址 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'"
}