Aspect Ratio 21:9

Adjust the Fit Screen mode on any ultrawide monitor.

Aspect Ratio 21:9คืออะไร?

Aspect Ratio 21:9 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Patryk Rzucidło (PTKDev) และคุณลักษณะหลักของมันคือ "Adjust the Fit Screen mode on any ultrawide monitor."

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Aspect Ratio 21:9

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

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

                        🖥 Correct the aspect ratio and remove the black bars from the ultrawide 21:9 monitors. You can also adjust the different aspect ratios on the 32:9 and 16:10 monitors. Compatible with Netflix, Youtube, Twitch and others. You can add unsupported websites: the extension tries to automatically correct the video player.

📚 How to use: 
1. Install extension
2. Open popup (click on icon of this extension)
3. Enable netflix
4. Go to netflix and open video
5. Bye bye side black bars!

⌨️ Shortcuts: 
You can set Shortcuts on: chrome://extensions/shortcuts

💫 License
- Code and Contributions have MIT License
- Opensource: https://github.com/ptkdev/chrome-extension-aspectratio219                    

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

ชื่อ Aspect Ratio 21:9 Aspect Ratio 21:9
ID mgpbkhkpghgmihmcfbndejmkaibbnljo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/aspect-ratio-219/mgpbkhkpghgmihmcfbndejmkaibbnljo
คำอธิบาย Adjust the Fit Screen mode on any ultrawide monitor.
ขนาดไฟล์ 180 KB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 1.5.2
อัปเดตครั้งล่าสุด 2020-10-26
วันที่เผยแพร่ 2020-05-06
คะแนน 3.94/5 รวมทั้งหมด 52 คะแนน
ผู้พัฒนา Patryk Rzucidło (PTKDev)
อีเมล support@ptkdev.io
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ptkdev/chrome-extension-aspectratio219
URL หน้าช่วยเหลือ https://github.com/ptkdev/chrome-extension-aspectratio219/issues
URL หน้านโยบายความเป็นส่วนตัว https://en.ptk.dev/policy/privacy
ภาษาที่รองรับ en,es,it,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_description__",
    "manifest_version": 2,
    "version": "1.5.2",
    "author": "Patryk Rzucid\u0142o [@ptkdev]  (https:\/\/ptk.dev)",
    "browser_action": {
        "default_icon": "images\/icon_app_128x128.png",
        "default_title": "Aspect Ratio 21:9",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "default_locale": "en",
    "icons": {
        "128": "images\/icon_app_128x128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/commands.min.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-fullscreen-mode": {
            "global": true,
            "description": "Toggle \"only in fullscreenmode\""
        },
        "toggle-force-default": {
            "global": true,
            "description": "Force 16:9 aspect ratio"
        },
        "toggle-force-219": {
            "global": true,
            "description": "Force 21:9 aspect ratio"
        },
        "toggle-force-329": {
            "global": true,
            "description": "Force 32:9 aspect ratio"
        },
        "toggle-force-custom": {
            "global": true,
            "description": "Force CUSTOM aspect ratio"
        },
        "toggle-stretch": {
            "global": true,
            "description": "Force stretch mode"
        },
        "toggle-crop": {
            "global": true,
            "description": "Force crop\/zoom mode"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/video.min.js"
            ],
            "all_frames": true
        }
    ]
}