Invisible Google Slide Control Bar

Control your Google Slide control bar.

Invisible Google Slide Control Barคืออะไร?

Invisible Google Slide Control Bar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thumbd12856 และคุณลักษณะหลักของมันคือ "Control your Google Slide control bar."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Invisible Google Slide Control Bar

ดาวน์โหลดไฟล์ส่วนขยาย Invisible Google Slide Control Bar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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": [
        "*:\/\/*\/*"
    ]
}