Youtube Ad Skip Key

Skip Youtube ads with a shortcut key/ button

Youtube Ad Skip Keyคืออะไร?

Youtube Ad Skip Key เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nathee Jaywaree และคุณลักษณะหลักของมันคือ "Skip Youtube ads with a shortcut key/ button"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Ad Skip Key

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

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

                        Youtube Ad Skip Key is an extension that provides you a shortcut key/ button to skip youtube ads. It does not block ads.

This extension simulates the process of clicking "Skip Ads", clicking the "x" button of those ads at the bottom of the Youtube player and clicking the "No Thanks" or "Skip Trial" of Youtube Premium ads.

This is for people who still want to support creators by watching ads, and sometimes don't want to skip ads right when the timer ends because some ads are interesting. It also closes those ads at the bottom and Youtube Premium ads that sometimes pop up.

The default shortcut key is 'Z'. This extension only supports typing keys such as "A-Z", "0-9", "-=[]\;'./", numpad keys, spacebar and enter key.

*The keys are based from QWERTY keyboard layout. However, it is based on the location not the value of the key itself. For example, users can press key from other languages that is supposed to be in the same location as QWERTY 'Z' key, so they don't need to change keyboard language back to English to skip ads.
*You must change tabs to the ad-playing youtube tab to be able to close the ad.
*You should avoid assigning shortcut to keys that are already assigned by Youtube such as A, C, D, F, I, J, K, L, M, N, O, P, S, T, W, "0-9", <, >, /, [, ], -, =, Numpad+, Numpad-, Numpad0-9 and Spacebar
*If you are also using Youtube Music, you should also avoid these keys: E, G, H, Q, R, ;
*It does not support combination of ALT, CTRL, SHIFT + supported keys.                    

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

ชื่อ Youtube Ad Skip Key Youtube Ad Skip Key
ID hgijpdhbgbfknajdponodgdehhafcbbp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-ad-skip-key/hgijpdhbgbfknajdponodgdehhafcbbp
คำอธิบาย Skip Youtube ads with a shortcut key/ button
ขนาดไฟล์ 16.89 KB
จำนวนการติดตั้ง 2,133
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2023-08-29
วันที่เผยแพร่ 2022-03-19
คะแนน 3.50/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Nathee Jaywaree
อีเมล [email protected]
เว็บไซต์ส่วนขยาย https://github.com/eltfshr/youtube-ad-skip-key
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Ad Skip Key",
    "description": "Skip Youtube ads with a shortcut key\/ button",
    "version": "1.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "closeAd.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "options_ui": {
        "page": "option.html",
        "open_in_tab": false
    }
}