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文件

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

擴展使用說明

                        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
官方網址 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"
    ]
}