Time Squasher - EuroSportPlayer

Hides video time for EuroSport Player so you don't know the result by how long is left. Made with squash in mind

Time Squasher - EuroSportPlayer란 무엇입니까?

Time Squasher - EuroSportPlayer은(는) Jamhead에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides video time for EuroSport Player so you don't know the result by how long is left. Made with squash in mind"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Time Squasher - EuroSportPlayer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Hides the time bar on videos for EuroSportPlayer on eurosportplayer.com so you don't know the result by how long is left, and adds buttons so that you can still fast-forward/rewind without knowing the time left. Also hides the length of matches in video thumbnails on the video selection screen.

For firefox extension:
https://addons.mozilla.org/en-US/firefox/addon/time-squasher-eurosportplayer/                    

확장 프로그램 기본 정보

이름 Time Squasher - EuroSportPlayer Time Squasher - EuroSportPlayer
ID cfeogkkfaiielaeadmmldibmnjnpgkni
공식 URL https://chromewebstore.google.com/detail/time-squasher-eurosportpl/cfeogkkfaiielaeadmmldibmnjnpgkni
설명 Hides video time for EuroSport Player so you don't know the result by how long is left. Made with squash in mind
파일 크기 437 KB
설치 횟수 268
현재 버전 1.0.5
최근 업데이트 2017-09-11
출시 날짜 2017-09-11
평점 4.00/5 총 5 개의 평점
개발자 Jamhead
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Time Squasher - EuroSportPlayer",
    "version": "1.0.5",
    "description": "Hides video time for EuroSport Player so you don't know the result by how long is left. Made with squash in mind",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/active-squasher-icon128.png",
        "default_title": "squasher",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icons\/active-squasher-icon48.png",
        "128": "icons\/active-squasher-icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/*.eurosportplayer.*\/*"
            ],
            "css": [
                "squasher.css"
            ],
            "js": [
                "eurosport_squasher.js"
            ]
        }
    ]
}