Image extraction
Displays a list of the images used on the website.
O que é Image extraction?
Image extraction é uma extensão do Chrome desenvolvida por sato.magicword, e sua principal característica é "Displays a list of the images used on the website.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Image extraction
Baixe arquivos de extensão Image extraction 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
Displays a list of the images used on the website. The images loaded with "" or "css:background" are the target of the list. ウェブサイトで使用されている画像のリストを表示します。 「
」または「css:background」で読み込まれた画像が対象です。 ウェブ上の画像を保存するのに最適です。
Informações Básicas da Extensão
Nome | |
ID | ceopbbecmahcocdoeadpakgmhmgjhaae |
URL Oficial | https://chrome.google.com/webstore/detail/image-extraction/ceopbbecmahcocdoeadpakgmhmgjhaae |
Descrição | Displays a list of the images used on the website. |
Tamanho do Arquivo | 8.81 KB |
Contagem de Instalações | 117 |
Versão Atual | 1.0.00.0000 |
Última Atualização | 2020-05-19 |
Data de Publicação | 2020-05-19 |
Desenvolvedor | sato.magicword |
Tipo de Pagamento | free |
Site da Extensão | https://kaminarimagazine.com/ |
Idiomas Suportados | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Image extraction", "description": "Displays a list of the images used on the website.", "short_name": "Img ex", "version": "1.0.00.0000", "author": "Shinji Sato", "homepage_url": "https:\/\/kaminarimagazine.com\/", "icons": { "16": "image\/icon-16x16.png", "48": "image\/icon-48x48.png", "128": "image\/icon-128x128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "main.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "image\/icon-19x19.png" }, "default_title": "Image List" }, "permissions": [ "tabs", "background", "http:\/\/*\/*", "https:\/\/*\/*" ] } |