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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}