Seen It

Skip over Imgur images that you've already seen.

Cos'è Seen It?

Seen It è un'estensione di Chrome sviluppata da http://arjunsarode.com, e la sua funzione principale è "Skip over Imgur images that you've already seen.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Seen It

Scarica i file di estensione Seen It in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Seen It Seen It
ID nmajkegnjcjcjehiindhfldkfeoifeff
URL Ufficiale https://chrome.google.com/webstore/detail/seen-it/nmajkegnjcjcjehiindhfldkfeoifeff
Descrizione Skip over Imgur images that you've already seen.
Dimensione del File 36.97 KB
Conteggio Installazioni 469
Versione Corrente 1.2.0
Ultimo Aggiornamento 2016-09-29
Data di Pubblicazione 2016-09-29
Valutazione 3.79/5 Totale 28 Valutazioni
Sviluppatore http://arjunsarode.com
Tipo di Pagamento free
Sito Web dell'Estensione http://arjunsarode.com
URL della Pagina di Aiuto http://arjunsarode.com
Lingue Supportate 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"
    ]
}