YTPP
YTPP: YouTube Play/Pause without switching tabs
YTPPคืออะไร?
YTPP เป็นส่วนขยายของ Chrome ที่พัฒนาโดย spidergears และคุณลักษณะหลักของมันคือ "YTPP: YouTube Play/Pause without switching tabs"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YTPP
ดาวน์โหลดไฟล์ส่วนขยาย YTPP ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
YTPP: YouTube Play/Pause Extension lets user play/pause youtube without having to switch tabs. Clicking the extension button toggles playback state for all open youtube tabs.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YTPP |
ID | onlhipebedljinheklgalifgbolcmndi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi |
คำอธิบาย | YTPP: YouTube Play/Pause without switching tabs |
ขนาดไฟล์ | 10.16 KB |
จำนวนการติดตั้ง | 23 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2016-11-20 |
วันที่เผยแพร่ | 2016-11-20 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | spidergears |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YTPP", "short_name": "YTPP", "version": "0.1", "description": "YTPP: YouTube Play\/Pause without switching tabs", "icons": { "128": "icon.png", "48": "icon_48.png", "16": "icon_16.png" }, "author": { "name": "spidergears", "twitter_handle": "spider_gears", "github": "http:\/\/github.com\/spidergears" }, "browser_action": { "default_icon": "icon.png", "default_title": "YTPP" }, "permissions": [ "tabs" ], "background": { "scripts": [ "ytpp_background_script.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "ytpp_content_script.js" ] } ] } |