Seen It
Skip over Imgur images that you've already seen.
Co to jest Seen It?
Seen It to rozszerzenie Chrome opracowane przez http://arjunsarode.com, a jego główną funkcją jest „Skip over Imgur images that you've already seen.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Seen It
Pobierz pliki rozszerzeń Seen It w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | nmajkegnjcjcjehiindhfldkfeoifeff |
Oficjalny URL | https://chrome.google.com/webstore/detail/seen-it/nmajkegnjcjcjehiindhfldkfeoifeff |
Opis | Skip over Imgur images that you've already seen. |
Rozmiar pliku | 36.97 KB |
Liczba instalacji | 469 |
Aktualna Wersja | 1.2.0 |
Ostatnia Aktualizacja | 2016-09-29 |
Data Publikacji | 2016-09-29 |
Ocena | 3.79/5 Łącznie 28 Oceny |
Deweloper | http://arjunsarode.com |
Typ Płatności | free |
Strona Rozszerzenia | http://arjunsarode.com |
Adres URL Strony Pomocy | http://arjunsarode.com |
Obsługiwane Języki | 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" ] } |