Alexander
Alexander
If you want to add a new selector you should follow [this guide](https://github.com/ispras/web-scraper-chrome-extension/blob/master/docs/Development.md). Don't forget to add new SelectorType in [Controller](https://github.com/ispras/web-scraper-chrome-extension/blob/master/src/scripts/Controller.js#L25) so you can choose new SelectorType when creating new...
> Doesn't the code come with some default selectors that work out of the box? This selector's should work out of the box as described [here](https://github.com/ispras/web-scraper-chrome-extension/tree/master/docs/Selectors). >Or are you saying...
> I think you jumped over a bunch of steps. First of all, the code in the repo does not work as is directly in Chrome, unlike several Chrome extensions...
One of our analysts encountered a similar bug. It seems that the only diifrence beetwen us could be opearating system. Do you use Windows OS? We'll try to investigate this...
> One of our analysts encountered a similar bug. We discovered that the they tried to open select on pages which are chrome internal pages and could not be selected...
Maybe there is a misunderstanding of documentation, but you should use url pattern as ` [START-END:STEP] – [001-010:10]`. https://github.com/ispras/web-scraper-chrome-extension/blob/master/docs/Scraping%20a%20site.md
Seems there is a mistake in plugin hints. Will fix it.
I think in your case you should use this sitemap as example: ` {"_id":"google","startUrls":["http://google.com.br?id=[001-010:1]"],"selectors":[{"id":"body","selector":"body","type":"SelectorHTML","parentSelectors":["_root"]}]} ` then it will make requests to: https://www.google.com.br/?id=010 ... https://www.google.com.br/?id=001
Probably you did not build extension with yarn build. After that build you should add created dist folder to chrome. Another way of installing extension download zip from releases and...