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