Seen It

Skip over Imgur images that you've already seen.

Vad är Seen It?

Seen It är en Chrome-tillägg utvecklad av http://arjunsarode.com, och dess huvudfunktion är "Skip over Imgur images that you've already seen.".

Tilläggsskärmbilder

screenshot

Ladda ner Seen It-förlängningens CRX-fil

Ladda ner Seen It-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Seen It Seen It
ID nmajkegnjcjcjehiindhfldkfeoifeff
Officiell webbadress https://chrome.google.com/webstore/detail/seen-it/nmajkegnjcjcjehiindhfldkfeoifeff
Beskrivning Skip over Imgur images that you've already seen.
Filstorlek 36.97 KB
Antal Installationer 469
Aktuell Version 1.2.0
Senast Uppdaterad 2016-09-29
Publiceringsdatum 2016-09-29
Betyg 3.79/5 Totalt 28 Betyg
Utvecklare http://arjunsarode.com
Betalningssätt free
Tilläggswebbplats http://arjunsarode.com
Hjälpsida URL http://arjunsarode.com
Stödda Språk 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"
    ]
}