Seen It
Skip over Imgur images that you've already seen.
What is Seen It?
Seen It is a Chrome extension developed by http://arjunsarode.com, and its main feature is "Skip over Imgur images that you've already seen.".
Extension Screenshots
Download Seen It Extension CRX File
Download Seen It extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | nmajkegnjcjcjehiindhfldkfeoifeff |
Official URL | https://chrome.google.com/webstore/detail/seen-it/nmajkegnjcjcjehiindhfldkfeoifeff |
Description | Skip over Imgur images that you've already seen. |
File Size | 36.97 KB |
Installation Count | 469 |
Current Version | 1.2.0 |
Last Updated | 2016-09-29 |
Publish Date | 2016-09-29 |
Rating | 3.79/5 Total 28 Ratings |
Developer | http://arjunsarode.com |
Payment Type | free |
Extension Website | http://arjunsarode.com |
Help Page URL | http://arjunsarode.com |
Supported Languages | 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" ] } |