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文件

下載Youtube Fix Ctrl+F擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}