├── .gitignore ├── LICENSE.txt ├── README.md ├── Rakefile ├── psd ├── scraper128.psd ├── scraper16.png ├── scraper32.psd └── scraper48.psd └── src ├── background.html ├── chrome_ex_oauth.html ├── chrome_ex_oauth.js ├── chrome_ex_oauthsimple.js ├── css ├── base.css ├── popup.css └── viewer.css ├── img ├── application-form.png ├── bullet_add.png ├── bullet_delete.png ├── control-090-small.png ├── control-270-small.png ├── exclamation-button.png ├── exclamation-red.png ├── handle.png ├── highlighter-small.png ├── progress.gif ├── question-small-white.png ├── question.png ├── scraper128.png ├── scraper16.png ├── scraper19.png ├── scraper32.png └── scraper48.png ├── js ├── background.js ├── bit155 │ ├── attr.js │ ├── csv.js │ └── scraper.js ├── contentscript.js ├── popup.js ├── shared.js └── viewer.js ├── lib ├── datatables-1.7.4 │ ├── images │ │ ├── Sorting icons.psd │ │ ├── back_disabled.jpg │ │ ├── back_enabled.jpg │ │ ├── favicon.ico │ │ ├── forward_disabled.jpg │ │ ├── forward_enabled.jpg │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ └── js │ │ └── jquery.dataTables.js ├── jquery-ui-1.8.6 │ ├── css │ │ └── custom-theme │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_75_ffffff_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.8.6.custom.css │ └── js │ │ ├── jquery-1.4.2.js │ │ ├── jquery-ui-1.8.6.highlight.js │ │ └── jquery-ui-1.8.6.js ├── jquery.layout-1.2.0.js └── jquery.tablednd_0_5.js ├── license.html ├── manifest.json ├── popup.html ├── test ├── SpecRunner.html ├── lib │ └── jasmine-1.0.1 │ │ ├── MIT.LICENSE │ │ ├── jasmine-html.js │ │ ├── jasmine.css │ │ └── jasmine.js └── spec │ ├── bit155 │ ├── attr.spec.js │ ├── csv.spec.js │ └── scraper.spec.js │ ├── jquery-commonAncestor.spec.js │ ├── jquery-serializeParams.spec.js │ └── jquery-xpath.spec.js └── viewer.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/Rakefile -------------------------------------------------------------------------------- /psd/scraper128.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/psd/scraper128.psd -------------------------------------------------------------------------------- /psd/scraper16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/psd/scraper16.png -------------------------------------------------------------------------------- /psd/scraper32.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/psd/scraper32.psd -------------------------------------------------------------------------------- /psd/scraper48.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/psd/scraper48.psd -------------------------------------------------------------------------------- /src/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/background.html -------------------------------------------------------------------------------- /src/chrome_ex_oauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/chrome_ex_oauth.html -------------------------------------------------------------------------------- /src/chrome_ex_oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/chrome_ex_oauth.js -------------------------------------------------------------------------------- /src/chrome_ex_oauthsimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/chrome_ex_oauthsimple.js -------------------------------------------------------------------------------- /src/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/css/base.css -------------------------------------------------------------------------------- /src/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/css/popup.css -------------------------------------------------------------------------------- /src/css/viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/css/viewer.css -------------------------------------------------------------------------------- /src/img/application-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/application-form.png -------------------------------------------------------------------------------- /src/img/bullet_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/bullet_add.png -------------------------------------------------------------------------------- /src/img/bullet_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/bullet_delete.png -------------------------------------------------------------------------------- /src/img/control-090-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/control-090-small.png -------------------------------------------------------------------------------- /src/img/control-270-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/control-270-small.png -------------------------------------------------------------------------------- /src/img/exclamation-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/exclamation-button.png -------------------------------------------------------------------------------- /src/img/exclamation-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/exclamation-red.png -------------------------------------------------------------------------------- /src/img/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/handle.png -------------------------------------------------------------------------------- /src/img/highlighter-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/highlighter-small.png -------------------------------------------------------------------------------- /src/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/progress.gif -------------------------------------------------------------------------------- /src/img/question-small-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/question-small-white.png -------------------------------------------------------------------------------- /src/img/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/question.png -------------------------------------------------------------------------------- /src/img/scraper128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/scraper128.png -------------------------------------------------------------------------------- /src/img/scraper16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/scraper16.png -------------------------------------------------------------------------------- /src/img/scraper19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/scraper19.png -------------------------------------------------------------------------------- /src/img/scraper32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/scraper32.png -------------------------------------------------------------------------------- /src/img/scraper48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/img/scraper48.png -------------------------------------------------------------------------------- /src/js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/js/background.js -------------------------------------------------------------------------------- /src/js/bit155/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/js/bit155/attr.js -------------------------------------------------------------------------------- /src/js/bit155/csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/js/bit155/csv.js -------------------------------------------------------------------------------- /src/js/bit155/scraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/js/bit155/scraper.js -------------------------------------------------------------------------------- /src/js/contentscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/js/contentscript.js -------------------------------------------------------------------------------- /src/js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/js/popup.js -------------------------------------------------------------------------------- /src/js/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/js/shared.js -------------------------------------------------------------------------------- /src/js/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/js/viewer.js -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/images/Sorting icons.psd -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/images/back_disabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/images/back_disabled.jpg -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/images/back_enabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/images/back_enabled.jpg -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/images/favicon.ico -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/images/forward_disabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/images/forward_disabled.jpg -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/images/forward_enabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/images/forward_enabled.jpg -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/images/sort_asc.png -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/images/sort_both.png -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/images/sort_desc.png -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /src/lib/datatables-1.7.4/js/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/datatables-1.7.4/js/jquery.dataTables.js -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_glass_75_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_glass_75_ffffff_1x400.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/css/custom-theme/jquery-ui-1.8.6.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/css/custom-theme/jquery-ui-1.8.6.custom.css -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/js/jquery-1.4.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/js/jquery-1.4.2.js -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/js/jquery-ui-1.8.6.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/js/jquery-ui-1.8.6.highlight.js -------------------------------------------------------------------------------- /src/lib/jquery-ui-1.8.6/js/jquery-ui-1.8.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery-ui-1.8.6/js/jquery-ui-1.8.6.js -------------------------------------------------------------------------------- /src/lib/jquery.layout-1.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery.layout-1.2.0.js -------------------------------------------------------------------------------- /src/lib/jquery.tablednd_0_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/lib/jquery.tablednd_0_5.js -------------------------------------------------------------------------------- /src/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/license.html -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/popup.html -------------------------------------------------------------------------------- /src/test/SpecRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/test/SpecRunner.html -------------------------------------------------------------------------------- /src/test/lib/jasmine-1.0.1/MIT.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/test/lib/jasmine-1.0.1/MIT.LICENSE -------------------------------------------------------------------------------- /src/test/lib/jasmine-1.0.1/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/test/lib/jasmine-1.0.1/jasmine-html.js -------------------------------------------------------------------------------- /src/test/lib/jasmine-1.0.1/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/test/lib/jasmine-1.0.1/jasmine.css -------------------------------------------------------------------------------- /src/test/lib/jasmine-1.0.1/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/test/lib/jasmine-1.0.1/jasmine.js -------------------------------------------------------------------------------- /src/test/spec/bit155/attr.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/test/spec/bit155/attr.spec.js -------------------------------------------------------------------------------- /src/test/spec/bit155/csv.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/test/spec/bit155/csv.spec.js -------------------------------------------------------------------------------- /src/test/spec/bit155/scraper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/test/spec/bit155/scraper.spec.js -------------------------------------------------------------------------------- /src/test/spec/jquery-commonAncestor.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/test/spec/jquery-commonAncestor.spec.js -------------------------------------------------------------------------------- /src/test/spec/jquery-serializeParams.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/test/spec/jquery-serializeParams.spec.js -------------------------------------------------------------------------------- /src/test/spec/jquery-xpath.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/test/spec/jquery-xpath.spec.js -------------------------------------------------------------------------------- /src/viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnmldave/scraper/HEAD/src/viewer.html --------------------------------------------------------------------------------