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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ursuscode.com และคุณลักษณะหลักของมันคือ "Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Fix Ctrl+F
ดาวน์โหลดไฟล์ส่วนขยาย 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. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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"
]
}
]
} | |