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.」です。

拡張機能のスクリーンショット

screenshot
screenshot

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 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"
    }
}