meeting-timer-on-chrome

meeting-timer-on-chrome

meeting-timer-on-chrome क्या है?

meeting-timer-on-chrome osd.akira द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "meeting-timer-on-chrome"।

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

screenshot
screenshot

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

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

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

                        This extension provides the ability to display a timer on the page. When you have an online meeting, it's helpful to have a timer on the page to share the page. Also, having a timer in plain sight will help the meeting run smoothly. You can set timers not only for meetings, but also for individual issues.

How to use.

1. Click the tool icon.
2. Set the time in the MeetingTimer field.
3. Click the Start button.

To stop, press the stop button.

If you want to set a time in the meeting to discuss an individual issue, enter it in the issue field.
The Issue timer can be reset by pressing the refresh button.                    

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

नाम meeting-timer-on-chrome meeting-timer-on-chrome
ID gcimamalojjliijphcdbjmkcllpbgolb
आधिकारिक URL https://chromewebstore.google.com/detail/meeting-timer-on-chrome/gcimamalojjliijphcdbjmkcllpbgolb
विवरण meeting-timer-on-chrome
फ़ाइल का आकार 70.64 KB
स्थापना संख्या 23
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2020-04-05
प्रकाशन तिथि 2020-04-05
डेवलपर osd.akira
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/osdakira/meeting-timer-on-chrome
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "meeting-timer-on-chrome",
    "version": "1.0.0",
    "name": "meeting-timer-on-chrome",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/github.com\/",
        "https:\/\/trello.com\/",
        "https:\/\/qiita.com\/",
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34-stopwatch.png"
    },
    "icons": {
        "16": "icon-16-stopwatch.png",
        "48": "icon-48-stopwatch.png",
        "128": "icon-128-stopwatch.png"
    },
    "web_accessible_resources": [
        "injectedTimerElement.html"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/trello.com\/*",
                "https:\/\/qiita.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "myContentScript.bundle.js"
            ]
        }
    ]
}