Stopwatch for Google Sheets

Adds a stopwatch to Google Sheets.

Stopwatch for Google Sheets क्या है?

Stopwatch for Google Sheets Shawn Z द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a stopwatch to Google Sheets."।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में Stopwatch for Google Sheets एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension adds a stopwatch to Google Sheets. When the stopwatch isn't running you can start the stopwatch by clicking on the time. When the stopwatch is running you can click on the time again to pause the stopwatch. The stopwatch can be reset anytime by clicking on the X button next to the time.

When the stopwatch is paused or reset the time is copied to the clipboard.

This extension respects your privacy and doesn't collect or send any of your data anywhere.

This extension open source software.

Source code:  https://github.com/jq6l43d1/google-sheets-timer                    

एक्सटेंशन की मूल जानकारी

नाम Stopwatch for Google Sheets Stopwatch for Google Sheets
ID dldgbenmbgcinedpcmkllgabdmihabon
आधिकारिक URL https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon
विवरण Adds a stopwatch to Google Sheets.
फ़ाइल का आकार 5.81 KB
स्थापना संख्या 601
वर्तमान संस्करण 1.4
अंतिम अपडेट 2023-03-01
प्रकाशन तिथि 2023-02-13
रेटिंग 4.50/5 कुल 2 रेटिंग्स
डेवलपर Shawn Z
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jq6l43d1/google-sheets-timer
सहायता पृष्ठ URL https://github.com/jq6l43d1/google-sheets-timer/issues
गोपनीयता नीति पृष्ठ URL https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Stopwatch for Google Sheets",
    "description": "Adds a stopwatch to Google Sheets.",
    "version": "1.4",
    "icons": {
        "48": "timer48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/spreadsheets\/d\/*\/edit*"
            ],
            "js": [
                "timer.js"
            ]
        }
    ]
}