Image extraction
Displays a list of the images used on the website.
Image extraction क्या है?
Image extraction sato.magicword द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays a list of the images used on the website."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Image extraction एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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:\/\/*\/*" ] } |