Youtube Fix Ctrl+F

Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.

Youtube Fix Ctrl+F란 무엇입니까?

Youtube Fix Ctrl+F은(는) https://ursuscode.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script."입니다.

Youtube Fix Ctrl+F 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.

There are no menus involved. Just install and the plugin will take care of the rest.

Tested on Windows.                    

확장 프로그램 기본 정보

이름 Youtube Fix Ctrl+F Youtube Fix Ctrl+F
ID kieifoemlhfnemoeeacmjpebghfbdhkd
공식 URL https://chromewebstore.google.com/detail/youtube-fix-ctrl+f/kieifoemlhfnemoeeacmjpebghfbdhkd
설명 Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.
파일 크기 17.35 KB
설치 횟수 82
현재 버전 0.0.1
최근 업데이트 2017-06-18
출시 날짜 2017-06-18
평점 3.33/5 총 3 개의 평점
개발자 https://ursuscode.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ursuscode.com/chrome-extensions/youtube-fix-ctrlf/
도움말 페이지 URL https://ursuscode.com/chrome-extensions/youtube-fix-ctrlf/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Fix Ctrl+F",
    "version": "0.0.1",
    "author": "Adolfo Garza (borncorp)",
    "manifest_version": 2,
    "description": "Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.",
    "homepage_url": "https:\/\/ursuscode.com\/chrome-extensions\/youtube-fix-ctrlf\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png"
    },
    "default_locale": "en",
    "permissions": [
        "*:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}