Image extraction
Displays a list of the images used on the website.
Image extractionとは何ですか?
Image extractionはsato.magicwordによって開発されたChromeの拡張機能で、その主な機能は「Displays a list of the images used on the website.」です。
拡張機能のスクリーンショット
Image extraction拡張機能のCRXファイルをダウンロード
Image extraction拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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」で読み込まれた画像が対象です。 ウェブ上の画像を保存するのに最適です。
拡張機能の基本情報
名前 | |
ID | ceopbbecmahcocdoeadpakgmhmgjhaae |
公式URL | https://chrome.google.com/webstore/detail/image-extraction/ceopbbecmahcocdoeadpakgmhmgjhaae |
説明 | Displays a list of the images used on the website. |
ファイルサイズ | 8.81 KB |
インストール数 | 117 |
現在のバージョン | 1.0.00.0000 |
最終更新日 | 2020-05-19 |
公開日 | 2020-05-19 |
開発者 | sato.magicword |
支払い方法 | free |
拡張機能のウェブサイト | https://kaminarimagazine.com/ |
対応言語 | 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:\/\/*\/*" ] } |