AdSkipper
This extension will skip youtube ads.
AdSkipperคืออะไร?
AdSkipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Abhishek Meharia และคุณลักษณะหลักของมันคือ "This extension will skip youtube ads."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AdSkipper
ดาวน์โหลดไฟล์ส่วนขยาย AdSkipper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
AdSkipper for Youtube™ is a content filtering and ad blocking browser extension which blocks ads on Youtube™. Automatically clicks 'Skip Ad' buttons for you. It doesn't block ads, it just clicks close button and skip ad for you automatically. Useful if you are listening to music in office areas or if you are bit lazy to press that button.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | AdSkipper |
ID | paeoelngbckenlidinleldbemhkdiphi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/adskipper/paeoelngbckenlidinleldbemhkdiphi |
คำอธิบาย | This extension will skip youtube ads. |
ขนาดไฟล์ | 59.06 KB |
จำนวนการติดตั้ง | 2,555 |
เวอร์ชันปัจจุบัน | 0.7 |
อัปเดตครั้งล่าสุด | 2021-06-27 |
วันที่เผยแพร่ | 2019-08-14 |
คะแนน | 4.50/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | Abhishek Meharia |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://abhim.in |
URL หน้าช่วยเหลือ | https://abhim.in |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AdSkipper", "description": "This extension will skip youtube ads.", "version": "0.7", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": true }, "commands": { "toggle-feature-foo": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "MacCtrl+Shift+K" }, "description": "Switches between play and pause state.", "name": "Play pause shortcut command", "global": true } }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "skip.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'" } |