Seen It

Skip over Imgur images that you've already seen.

Seen It là gì?

Seen It là một tiện ích mở rộng Chrome được phát triển bởi http://arjunsarode.com, và tính năng chính của nó là "Skip over Imgur images that you've already seen.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Seen It

Tải xuống các tệp mở rộng Seen It dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Seen It Seen It
ID nmajkegnjcjcjehiindhfldkfeoifeff
URL Chính Thức https://chrome.google.com/webstore/detail/seen-it/nmajkegnjcjcjehiindhfldkfeoifeff
Mô tả Skip over Imgur images that you've already seen.
Kích Thước Tệp 36.97 KB
Số Lần Cài Đặt 469
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2016-09-29
Ngày Phát Hành 2016-09-29
Đánh Giá 3.79/5 Tổng số 28 Đánh Giá
Nhà Phát Triển http://arjunsarode.com
Loại Thanh Toán free
Trang Web Mở Rộng http://arjunsarode.com
URL Trang Trợ Giúp http://arjunsarode.com
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}