Full Screen Button

Easily switch to full-screen view from toolbar!

Full Screen Buttonคืออะไร?

Full Screen Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sevina และคุณลักษณะหลักของมันคือ "Easily switch to full-screen view from toolbar!"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Full Screen Button

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

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

                        Full Screen Button is a simple extension for your browser that helps you full-screen the current tab.

There is also an option which let you maximize the active "video" element (if it is playing) instead of the tab. Please note that, you can disable this setting from the option's page. You can also use the keyboard shortcuts to maximize the active tab (Ctrl+Shift+F).

If you have a feature request, or found a bug to report, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/fullscreen-button.html).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Full Screen Button Full Screen Button
ID iokdoigdonjidoklkaonhielnkamibnp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/full-screen-button/iokdoigdonjidoklkaonhielnkamibnp
คำอธิบาย Easily switch to full-screen view from toolbar!
ขนาดไฟล์ 25.19 KB
จำนวนการติดตั้ง 2,935
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2022-09-02
วันที่เผยแพร่ 2018-12-08
คะแนน 4.81/5 รวมทั้งหมด 36 คะแนน
ผู้พัฒนา Sevina
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/fullscreen-button.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/fullscreen-button.html
URL หน้านโยบายความเป็นส่วนตัว https://mybrowseraddon.com/privacy-policy/developer/sevina.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.1",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Full Screen Button",
    "permissions": [
        "storage",
        "scripting",
        "activeTab"
    ],
    "description": "Easily switch to full-screen view from toolbar!",
    "homepage_url": "https:\/\/mybrowseraddon.com\/fullscreen-button.html",
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "action": {
        "default_title": "Full Screen Button",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "commands": {
        "toggle-fullscreen": {
            "description": "Toggle Fullscreen",
            "suggested_key": {
                "mac": "Command+Shift+F",
                "default": "Ctrl+Shift+F"
            }
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}