Seen It
Skip over Imgur images that you've already seen.
O que é Seen It?
Seen It é uma extensão do Chrome desenvolvida por http://arjunsarode.com, e sua principal característica é "Skip over Imgur images that you've already seen.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Seen It
Baixe arquivos de extensão Seen It no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | nmajkegnjcjcjehiindhfldkfeoifeff |
URL Oficial | https://chrome.google.com/webstore/detail/seen-it/nmajkegnjcjcjehiindhfldkfeoifeff |
Descrição | Skip over Imgur images that you've already seen. |
Tamanho do Arquivo | 36.97 KB |
Contagem de Instalações | 469 |
Versão Atual | 1.2.0 |
Última Atualização | 2016-09-29 |
Data de Publicação | 2016-09-29 |
Classificação | 3.79/5 Total de 28 Avaliações |
Desenvolvedor | http://arjunsarode.com |
Tipo de Pagamento | free |
Site da Extensão | http://arjunsarode.com |
URL da Página de Ajuda | http://arjunsarode.com |
Idiomas Suportados | 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" ] } |