AdSkipper

This extension will skip youtube ads.

AdSkipper란 무엇입니까?

AdSkipper은(는) Abhishek Meharia에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will skip youtube ads."입니다.

확장 프로그램 스크린샷

screenshot

AdSkipper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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'"
}