Watched It!

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

什麼是Watched It!?

Watched It!是由webagent開發的Chrome擴展程式,該擴展的主要功能是“YouTube Extension to keep track of the videos you already watched.”。

擴展截圖

screenshot

下載Watched It!擴展crx文件

下載Watched It!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Watched It! Watched It!
ID jfikpanmifikipolnppakfgmjmmldbio
官方網址 https://chromewebstore.google.com/detail/watched-it/jfikpanmifikipolnppakfgmjmmldbio
簡介 YouTube Extension to keep track of the videos you already watched.
檔案大小 38.06 KB
安裝次數 76
目前版本 1.2
更新時間 2012-07-29
上架時間 2012-07-29
評分 3.00/5 共 3 次評分
開發者 webagent
付費類型 free
支援的語言 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"
    }
}