ChronoMouse

Instantly displays local time information, performs easy Google Searches.

ChronoMouse क्या है?

ChronoMouse ChronoMouse द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Instantly displays local time information, performs easy Google Searches."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ChronoMouse एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}