Invisible Google Slide Control Bar

Control your Google Slide control bar.

Apa itu Invisible Google Slide Control Bar?

Invisible Google Slide Control Bar adalah ekstensi Chrome yang dikembangkan oleh thumbd12856, dan fitur utamanya adalah "Control your Google Slide control bar.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Invisible Google Slide Control Bar

Unduh file ekstensi Invisible Google Slide Control Bar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Invisible Google Slide Control Bar Invisible Google Slide Control Bar
ID hgaahalodagndnfjpggmojcbdololagh
URL Resmi https://chromewebstore.google.com/detail/invisible-google-slide-co/hgaahalodagndnfjpggmojcbdololagh
Deskripsi Control your Google Slide control bar.
Ukuran File 193 KB
Jumlah Instalasi 2,551
Versi Saat Ini 1.1
Terakhir Diperbarui 2019-09-29
Tanggal Publikasi 2019-09-28
Penilaian 4.82/5 Total 22 Penilaian
Pengembang thumbd12856
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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": [
        "*:\/\/*\/*"
    ]
}