MrScraper
MrScraper selector helper tool
Co je MrScraper?
MrScraper je rozšíření Chrome vyvinuté https://mrscraper.com, a jeho hlavní funkcí je „MrScraper selector helper tool“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření MrScraper
Stáhněte si soubory rozšíření MrScraper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
The MrScraper.com tool lets you easily find CSS selectors from to use with scrapers. Just click on the element you want to target and a CSS selector will be generated for you. Additionally, any CSS selector you type in will be highlighted. Use this to easily detect what elements will be extracted with the current selector.
Základní Informace o Rozšíření
Název | MrScraper |
ID | bhjedfpgiobfaojogegbmcbocfnbkimh |
Oficiální URL | https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh |
Popis | MrScraper selector helper tool |
Velikost souboru | 21.63 KB |
Počet instalací | 105 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2023-02-09 |
Datum Vydání | 2023-02-08 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | https://mrscraper.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://mrscraper.com |
URL Stránky Nápovědy | https://mrscraper.freshdesk.com/support/home |
URL Stránky Zásad Ochrany Soukromí | https://mrscraper.com/privacy-policy |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MrScraper", "version": "1.0.0", "description": "MrScraper selector helper tool", "manifest_version": 3, "author": "Kai Sasaki", "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+V", "mac": "Command+Shift+V" } } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "web_accessible_resources": [ { "resources": [ "images\/icon-128.png", "templates\/scraper-tool.html" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |