MrScraper
MrScraper selector helper tool
Vad är MrScraper?
MrScraper är en Chrome-tillägg utvecklad av https://mrscraper.com, och dess huvudfunktion är "MrScraper selector helper tool".
Tilläggsskärmbilder
Ladda ner MrScraper-förlängningens CRX-fil
Ladda ner MrScraper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | MrScraper |
ID | bhjedfpgiobfaojogegbmcbocfnbkimh |
Officiell webbadress | https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh |
Beskrivning | MrScraper selector helper tool |
Filstorlek | 21.63 KB |
Antal Installationer | 105 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2023-02-09 |
Publiceringsdatum | 2023-02-08 |
Betyg | 1.00/5 Totalt 1 Betyg |
Utvecklare | https://mrscraper.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://mrscraper.com |
Hjälpsida URL | https://mrscraper.freshdesk.com/support/home |
URL till Sekretesspolicy Sidan | https://mrscraper.com/privacy-policy |
Stödda Språk | 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:\/\/*\/*" ] } ] } |