Seen It

Skip over Imgur images that you've already seen.

Что такое Seen It?

Seen It - это расширение Chrome, разработанное http://arjunsarode.com, и его основная функция - "Skip over Imgur images that you've already seen.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Seen It

Скачайте файлы расширений 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"
    ]
}