├── .gitignore ├── .idea ├── codeStyles │ └── codeStyleConfig.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── crawl ├── http.js └── render.js ├── custom ├── nytimes.js ├── pdf.js ├── reverse_image_bing.js ├── reverse_image_bing_url.js ├── reverse_image_google.js ├── reverse_image_google_dataimg.js ├── reverse_image_google_final.js ├── reverse_image_google_url.js ├── screenshot.js └── social.js └── serp ├── amazon.js ├── bing_scraper.js └── google_scraper.js /.gitignore: -------------------------------------------------------------------------------- 1 | unused/ 2 | node_modules/ 3 | .idea/ 4 | tests/ 5 | -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/README.md -------------------------------------------------------------------------------- /crawl/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/crawl/http.js -------------------------------------------------------------------------------- /crawl/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/crawl/render.js -------------------------------------------------------------------------------- /custom/nytimes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/custom/nytimes.js -------------------------------------------------------------------------------- /custom/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/custom/pdf.js -------------------------------------------------------------------------------- /custom/reverse_image_bing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/custom/reverse_image_bing.js -------------------------------------------------------------------------------- /custom/reverse_image_bing_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/custom/reverse_image_bing_url.js -------------------------------------------------------------------------------- /custom/reverse_image_google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/custom/reverse_image_google.js -------------------------------------------------------------------------------- /custom/reverse_image_google_dataimg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/custom/reverse_image_google_dataimg.js -------------------------------------------------------------------------------- /custom/reverse_image_google_final.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/custom/reverse_image_google_final.js -------------------------------------------------------------------------------- /custom/reverse_image_google_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/custom/reverse_image_google_url.js -------------------------------------------------------------------------------- /custom/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/custom/screenshot.js -------------------------------------------------------------------------------- /custom/social.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/custom/social.js -------------------------------------------------------------------------------- /serp/amazon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/serp/amazon.js -------------------------------------------------------------------------------- /serp/bing_scraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/serp/bing_scraper.js -------------------------------------------------------------------------------- /serp/google_scraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikolaiT/scrapeulous/HEAD/serp/google_scraper.js --------------------------------------------------------------------------------