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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}