Annotate Meet by Denis Sheeran

Google Meet Users can now Annotate while Screen Sharing!

Annotate Meet by Denis Sheeran란 무엇입니까?

Annotate Meet by Denis Sheeran은(는) Denis Sheeran에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Google Meet Users can now Annotate while Screen Sharing!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Annotate Meet by Denis Sheeran 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Google Meet Users can now Annotate while Screen Sharing!
The Annotate Meet by Denis Sheeran Chrome Extension initiates a toolbar which includes a Pencil, Pen, Highlighter, Lines, Arrows, Boxes, Color Choices, Save Feature and more!
Annotate like you did with Zoom, only with the security and comfort of the Google Meet platform. This extension is especially useful for Education and Enterprise users during remote instruction. 

Once you're finished annotating, click the Clear All button to clear the screen!
If you want to save your annotations, click the Save Icon.
All annotations are over the screen and do not anchor to the text. If you scroll down or change tabs, annotations remain on screen until Finish Annotating is clicked.

Developed by Denis Sheeran and Vlas Bashynskyi
Visit denissheeran.com to learn more about Denis
Visit https://amzn.to/31CKOP5 to buy Denis' Books: Instant Relevance, and Hacking Mathematics
Visit https://youtube.com/channel/UC7zzRbbP3CaZhiFCipt0oQQ?sub_confirmation=1 for Denis' Youtube Channel
We do not collect any personal information and do not have any access to your Slides.                    

확장 프로그램 기본 정보

이름 Annotate Meet by Denis Sheeran Annotate Meet by Denis Sheeran
ID pdfefmpbiijhmbflahmoepedkndhkool
공식 URL https://chrome.google.com/webstore/detail/annotate-meet-by-denis-sh/pdfefmpbiijhmbflahmoepedkndhkool
설명 Google Meet Users can now Annotate while Screen Sharing!
파일 크기 869 KB
설치 횟수 30,000
현재 버전 1.0.0
최근 업데이트 2021-04-28
출시 날짜 2020-08-20
평점 2.57/5 총 28 개의 평점
개발자 Denis Sheeran
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://denissheeran.com
개인정보 보호 정책 페이지 URL https://denissheeran.com/work-with-denis/annotate-meet-privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Annotate Meet by Denis Sheeran",
    "description": "Google Meet Users can now Annotate while Screen Sharing!",
    "version": "1.0.0",
    "icons": {
        "128": "\/img\/logo_128.png",
        "512": "\/img\/logo_512.png"
    },
    "browser_action": {
        "default_icon": "\/img\/logo_512.png",
        "default_popup": "\/pages\/popup\/index.html"
    },
    "background": {
        "scripts": [
            "\/lib\/jquery.min.js",
            "\/lib\/webx.js",
            "\/js\/background\/bg_controller.js",
            "\/js\/background\/main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "\/lib\/jquery.min.js",
                "\/lib\/webx.js",
                "\/js\/content_scripts\/cs_controller.js",
                "\/js\/content_scripts\/main.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+A"
            }
        }
    },
    "permissions": [
        "tabs",
        "windows"
    ],
    "web_accessible_resources": [
        "\/*"
    ]
}