Image Finder
Find images to save
Image Finderとは何ですか?
Image Finderはhttps://anadev.com.brによって開発されたChromeの拡張機能で、その主な機能は「Find images to save」です。
拡張機能のスクリーンショット
Image Finder拡張機能のCRXファイルをダウンロード
Image Finder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension scrapes the current web page and lists all images found, on
tags or even elements with background-image.
- references: https://github.com/GoogleChrome/chrome-extensions-samples/tree/main/examples/page-redder https://blog.crimx.com/2017/03/09/get-all-images-in-dom-including-background-en/
- extension icon: made by Freepik from www.flaticon.com 拡張機能の基本情報
| 名前 | |
| ID | nejmjohiggmikmmhagccbogaohhbicjc |
| 公式URL | https://chromewebstore.google.com/detail/image-finder/nejmjohiggmikmmhagccbogaohhbicjc |
| 説明 | Find images to save |
| ファイルサイズ | 19 KB |
| インストール数 | 246 |
| 現在のバージョン | 0.1 |
| 最終更新日 | 2021-03-23 |
| 公開日 | 2021-03-22 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | https://anadev.com.br |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Image Finder",
"action": [],
"manifest_version": 3,
"version": "0.1",
"description": "Find images to save",
"permissions": [
"activeTab",
"scripting"
],
"background": {
"service_worker": "finder.js"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |