Seen It

Skip over Imgur images that you've already seen.

Seen It란 무엇입니까?

Seen It은(는) http://arjunsarode.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Skip over Imgur images that you've already seen."입니다.

확장 프로그램 스크린샷

screenshot

Seen It 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Seen It stores the images you see on Imgur and then automatically skips those images if you see them again. There are also options that allow you to disable skipping images, disable storing images, and clear all your stored images.                    

확장 프로그램 기본 정보

이름 Seen It Seen It
ID nmajkegnjcjcjehiindhfldkfeoifeff
공식 URL https://chrome.google.com/webstore/detail/seen-it/nmajkegnjcjcjehiindhfldkfeoifeff
설명 Skip over Imgur images that you've already seen.
파일 크기 36.97 KB
설치 횟수 469
현재 버전 1.2.0
최근 업데이트 2016-09-29
출시 날짜 2016-09-29
평점 3.79/5 총 28 개의 평점
개발자 http://arjunsarode.com
결제 유형 free
확장 프로그램 웹 사이트 http://arjunsarode.com
도움말 페이지 URL http://arjunsarode.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Seen It",
    "description": "Skip over Imgur images that you've already seen.",
    "version": "1.2.0",
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/imgur.com\/*"
            ],
            "js": [
                "dist\/client.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "19": "images\/icon-19.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "Seen It",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}