meeting-timer-on-chrome

meeting-timer-on-chrome

meeting-timer-on-chrome란 무엇입니까?

meeting-timer-on-chrome은(는) osd.akira에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "meeting-timer-on-chrome"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

meeting-timer-on-chrome 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}