Hide Slides
Hide Slides lets you turn off slides in a Google Slides presentation with one click. It is brought to you by denissheeran.com
Hide Slides란 무엇입니까?
Hide Slides은(는) Denis Sheeran에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide Slides lets you turn off slides in a Google Slides presentation with one click. It is brought to you by denissheeran.com"입니다.
확장 프로그램 스크린샷
Hide Slides 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Hide Slides extension acts like the same feature from Powerpoint. Click on the eye next to a slide and it will not display in presentation mode. Unclick the eye and the slide will become visible again. Hide Slides allows you to present a Google Slides presentation without making a new copy just to remove slides you don't want to show, just like the Powerpoint Hide Slides menu option. Simply install Hide Slides Chrome extension and on every presentation the "eye" icon will appear next to each slide. Choose which slides to show and which to hide and your presentation order will be updated! We do not collect any personal information and do not have any access to your Slides. Developed by Denis Sheeran and Nilay Soni
확장 프로그램 기본 정보
이름 | |
ID | efjocfieeddgnodkoelolmigkkhngpcd |
공식 URL | https://chrome.google.com/webstore/detail/hide-slides/efjocfieeddgnodkoelolmigkkhngpcd |
설명 | Hide Slides lets you turn off slides in a Google Slides presentation with one click. It is brought to you by denissheeran.com |
파일 크기 | 187 KB |
설치 횟수 | 433 |
현재 버전 | 1.2 |
최근 업데이트 | 2019-03-08 |
출시 날짜 | 2019-03-08 |
평점 | 2.00/5 총 1 개의 평점 |
개발자 | Denis Sheeran |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://denissheeran.com/hideslides |
개인정보 보호 정책 페이지 URL | https://denissheeran.com/work-with-denis/annotate-meet-privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide Slides", "version": "1.2", "description": "Hide Slides lets you turn off slides in a Google Slides presentation with one click. It is brought to you by denissheeran.com", "permissions": [ "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "*:\/\/*\/" ], "browser_action": { "default_icon": { "128": "images\/default_icon_128.png", "16": "images\/default_icon_16.png", "19": "images\/default_icon_19.png", "24": "images\/default_icon_24.png", "32": "images\/default_icon_32.png", "48": "images\/default_icon_48.png" }, "default_title": "Hide Slides" }, "icons": { "128": "images\/default_icon_128.png", "16": "images\/default_icon_16.png", "32": "images\/default_icon_32.png", "48": "images\/default_icon_48.png" }, "background": { "scripts": [ "js\/jquery.js", "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/presentation\/d\/*" ], "all_frames": true, "js": [ "js\/jquery.js", "js\/content.js" ], "run_at": "document_idle" } ], "manifest_version": 2, "web_accessible_resources": [ "images\/*" ] } |