Hide sidebar for twitch
Hide left sidebar
Hide sidebar for twitchคืออะไร?
Hide sidebar for twitch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shirataki และคุณลักษณะหลักของมันคือ "Hide left sidebar"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide sidebar for twitch
ดาวน์โหลดไฟล์ส่วนขยาย Hide sidebar for twitch ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
I made this tool because the sidebar can not be hidden in the new design. Please contact me from twitter if you need anything.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gfjidlccjjdicmoidflmfdnlfnfckpji |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/hide-sidebar-for-twitch/gfjidlccjjdicmoidflmfdnlfnfckpji |
คำอธิบาย | Hide left sidebar |
ขนาดไฟล์ | 35.2 KB |
จำนวนการติดตั้ง | 45 |
เวอร์ชันปัจจุบัน | 0.0.1.1 |
อัปเดตครั้งล่าสุด | 2018-08-04 |
วันที่เผยแพร่ | 2018-08-04 |
ผู้พัฒนา | shirataki |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://twitter.com/shirataki_nico2 |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide sidebar for twitch", "version": "0.0.1.1", "description": "Hide left sidebar", "browser_action": { "default_icon": { "19": "hide-sidebar-twitch-48x48.png" } }, "icons": { "48": "hide-sidebar-twitch-48x48.png" }, "author": "@shirataki_nico2", "homepage_url": "http:\/\/fpstps.net", "content_scripts": [ { "matches": [ "http:\/\/*.twitch.tv\/*", "https:\/\/*.twitch.tv\/*" ], "js": [ "jquery-3.3.1.min.js", "contents.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "background", "http:\/\/*.twitch.tv\/", "https:\/\/*.twitch.tv\/" ] } |