Project Free TV Ad Bypass

Project Free TV brings you to an interstitial page before letting you continue to the video - this extension bypasses that page

Project Free TV Ad Bypass란 무엇입니까?

Project Free TV Ad Bypass은(는) https://deanattali.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Project Free TV brings you to an interstitial page before letting you continue to the video - this extension bypasses that page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Project Free TV Ad Bypass 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        **NOTE: updated Feb 2016 to reflect the new site**

Code available at: https://github.com/daattali/pftv-ad-bypass-extension/

Project Free TV is a great site that hosts links to streams of movies and TV shows. However, it recently (July 2015) started showing an interstitial ad page that forces you to click on a button to go to the actual video page. This extension bypasses that page and lets you go straight to the video. Simple.

The first version of this extension (March 2015) was because PFTV started showing an ad page on every link that the user can't skip for at least 10 seconds before being able to continue to the video. I was not happy with having to wait 10 seconds for every link that I clicked, so I built this extension to redirect to the video from the ad page automatically without waiting 10 seconds.

The original PFTV website is shut down and now uses a different URL, so this is updated as of September 5, 2015.

It's a very simple extension, there isn't much to it - that's all it does.                    

확장 프로그램 기본 정보

이름 Project Free TV Ad Bypass Project Free TV Ad Bypass
ID modfjcgeknfglkdgckkomdcgokkjaadd
공식 URL https://chromewebstore.google.com/detail/project-free-tv-ad-bypass/modfjcgeknfglkdgckkomdcgokkjaadd
설명 Project Free TV brings you to an interstitial page before letting you continue to the video - this extension bypasses that page
파일 크기 55.99 KB
설치 횟수 598
현재 버전 0.2.1
최근 업데이트 2023-04-28
출시 날짜 2016-02-26
평점 3.89/5 총 9 개의 평점
개발자 https://deanattali.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/daattali/pftv-ad-bypass-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Project Free TV Ad Bypass",
    "version": "0.2.1",
    "manifest_version": 2,
    "description": "Project Free TV brings you to an interstitial page before letting you continue to the video - this extension bypasses that page",
    "page_action": {
        "default_popup": "html\/pftv-adblock-popup.html",
        "default_title": "Project Free TV Ad Bypass"
    },
    "background": {
        "scripts": [
            "js\/pftv-adblock-background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "options_page": "html\/pftv-adblock-popup.html",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.free-tv-video-online.info\/*",
                "http:\/\/projectfreetv.so\/*"
            ],
            "js": [
                "js\/pftv-adblock-inject.js"
            ],
            "css": [
                "css\/pftv-adblock-inject.css"
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/daattali\/pftv-ad-bypass-extension"
}