SeenIt
SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.
什麼是SeenIt?
SeenIt是由Imran Thobani開發的Chrome擴展程式,該擴展的主要功能是“SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.”。
擴展截圖
下載SeenIt擴展crx文件
下載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 |
官方網址 | 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" } } |