Image extraction
Displays a list of the images used on the website.
Qu'est-ce que Image extraction ?
Image extraction est une extension Chrome développée par sato.magicword, et sa fonction principale est "Displays a list of the images used on the website.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Image extraction
Téléchargez les fichiers d'extension Image extraction au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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」で読み込まれた画像が対象です。 ウェブ上の画像を保存するのに最適です。
Informations de Base sur l'Extension
Nom | |
ID | ceopbbecmahcocdoeadpakgmhmgjhaae |
URL Officiel | https://chrome.google.com/webstore/detail/image-extraction/ceopbbecmahcocdoeadpakgmhmgjhaae |
Description | Displays a list of the images used on the website. |
Taille du Fichier | 8.81 KB |
Nombre d'Installations | 117 |
Version Actuelle | 1.0.00.0000 |
Dernière Mise à Jour | 2020-05-19 |
Date de Publication | 2020-05-19 |
Développeur | sato.magicword |
Type de Paiement | free |
Site Web de l'Extension | https://kaminarimagazine.com/ |
Langues Prises en Charge | 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:\/\/*\/*" ] } |