SeenIt

SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.

SeenIt là gì?

SeenIt là một tiện ích mở rộng Chrome được phát triển bởi Imran Thobani, và tính năng chính của nó là "SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng SeenIt

Tải xuống các tệp mở rộng SeenIt dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SeenIt SeenIt
ID micbdilkepmleglkjkcgeppifphhpnfl
URL Chính Thức https://chromewebstore.google.com/detail/seenit/micbdilkepmleglkjkcgeppifphhpnfl
Mô tả SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.
Kích Thước Tệp 28.08 KB
Số Lần Cài Đặt 190
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2013-11-17
Ngày Phát Hành 2013-11-17
Đánh Giá 2.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Imran Thobani
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}