Invisible Google Slide Control Bar

Control your Google Slide control bar.

Invisible Google Slide Control Bar란 무엇입니까?

Invisible Google Slide Control Bar은(는) thumbd12856에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control your Google Slide control bar."입니다.

확장 프로그램 스크린샷

screenshot

Invisible Google Slide Control Bar 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Have you ever thought it is annoying that when presenting the Google Slide, the control bar shows while the cursor nearing it?

Now, you can control when to display/hide the Google Slide control bar by pressing a button!

Also, you can go for a toy example on the simple test page:
https://docs.google.com/presentation/d/1fUmsYkhQBpPGDVM1ErU8aL7bc0LmANjq8JA4WE0AjIs

The source code is open at https://github.com/thumbe12856/chrome-extension/tree/master/Invisible%20Google%20Slide%20Control%20Bar                    

확장 프로그램 기본 정보

이름 Invisible Google Slide Control Bar Invisible Google Slide Control Bar
ID hgaahalodagndnfjpggmojcbdololagh
공식 URL https://chromewebstore.google.com/detail/invisible-google-slide-co/hgaahalodagndnfjpggmojcbdololagh
설명 Control your Google Slide control bar.
파일 크기 193 KB
설치 횟수 2,551
현재 버전 1.1
최근 업데이트 2019-09-29
출시 날짜 2019-09-28
평점 4.82/5 총 22 개의 평점
개발자 thumbd12856
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Invisible Google Slide Control Bar",
    "description": "Control your Google Slide control bar.",
    "version": "1.1",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "index.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "assets\/lodash.min.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*\/*"
    ]
}