Watched It!

YouTube Extension to keep track of the videos you already watched.

Watched It! là gì?

Watched It! là một tiện ích mở rộng Chrome được phát triển bởi webagent, và tính năng chính của nó là "YouTube Extension to keep track of the videos you already watched.".

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

screenshot

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

Tải xuống các tệp mở rộng Watched It! 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

                        Notice: You need at least Version20+ to use this extension.

Current known Bugs:
- Only watched videos that are displayed when the site was loaded the first time get removed. If YouTube loads other videos using for example ajax they will be displayed without any changes.

V1.2. bug fix for the popup and some smaller issues with the sync. storage.

V1.1
The extension is now using sync. storage. Should help you if you are working on multiple systems. Also you can now repress the button to deselect a video. The video will then be removed from your history.

V1.0
alpha version - please do not expect anything to work. If you need features, send an email to: [email protected] and it will be implemented. Thanks!                    

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

Tên Watched It! Watched It!
ID jfikpanmifikipolnppakfgmjmmldbio
URL Chính Thức https://chromewebstore.google.com/detail/watched-it/jfikpanmifikipolnppakfgmjmmldbio
Mô tả YouTube Extension to keep track of the videos you already watched.
Kích Thước Tệp 38.06 KB
Số Lần Cài Đặt 76
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2012-07-29
Ngày Phát Hành 2012-07-29
Đánh Giá 3.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển webagent
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Watched It!",
    "version": "1.2",
    "manifest_version": 2,
    "description": "YouTube Extension to keep track of the videos you already watched.",
    "permissions": [
        "tabs",
        "http:\/\/www.youtube.com\/",
        "storage"
    ],
    "web_accessible_resources": [
        "img\/unwatchedActive1.png",
        "img\/unwatchedInactive1.png",
        "img\/watchedActive1.png",
        "img\/watchedInactive1.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "youtubeStyle.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "util.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    }
}