SeenIt
SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.
SeenItคืออะไร?
SeenIt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Imran Thobani และคุณลักษณะหลักของมันคือ "SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SeenIt
ดาวน์โหลดไฟล์ส่วนขยาย SeenIt ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Labels (or hides, if you adjust the options) the thumbnails of videos you've watched. Works for: * Search results * Recommendations * Sidebar with similar videos to the video now playing If you like this extension, please rate and/or leave a review here! All feedback is useful.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | SeenIt |
ID | micbdilkepmleglkjkcgeppifphhpnfl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/seenit/micbdilkepmleglkjkcgeppifphhpnfl |
คำอธิบาย | SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily. |
ขนาดไฟล์ | 28.08 KB |
จำนวนการติดตั้ง | 190 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2013-11-17 |
วันที่เผยแพร่ | 2013-11-17 |
คะแนน | 2.71/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | Imran Thobani |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SeenIt", "description": "SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.", "version": "1.3", "author": "Imran Thobani", "icons": { "128": "seenit.png" }, "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "browser_action": { "default_icon": "seenit.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "main.js" ], "run_at": "document_end", "all_frames": true } ], "oauth2": { "client_id": "1058256324296-ve67pga7n4anuc1d4c4s8uhlq1glkqhm.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/youtube.readonly" ] }, "permissions": [ "identity" ], "background": { "page": "background.html" } } |