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!”。
擴展截圖
下載Annotate Meet by Denis Sheeran擴展crx文件
下載Annotate Meet by Denis Sheeran擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | pdfefmpbiijhmbflahmoepedkndhkool |
官方網址 | 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": [ "\/*" ] } |