SeenIt
SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.
O que é SeenIt?
SeenIt é uma extensão do Chrome desenvolvida por Imran Thobani, e sua principal característica é "SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão SeenIt
Baixe arquivos de extensão SeenIt no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | SeenIt |
ID | micbdilkepmleglkjkcgeppifphhpnfl |
URL Oficial | https://chromewebstore.google.com/detail/seenit/micbdilkepmleglkjkcgeppifphhpnfl |
Descrição | SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily. |
Tamanho do Arquivo | 28.08 KB |
Contagem de Instalações | 190 |
Versão Atual | 1.3 |
Última Atualização | 2013-11-17 |
Data de Publicação | 2013-11-17 |
Classificação | 2.71/5 Total de 7 Avaliações |
Desenvolvedor | Imran Thobani |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |