├── .gitignore ├── LICENSE ├── README.md ├── main.js ├── markdown-images └── README_images │ ├── 02986e81.png │ ├── 4ca71531.png │ └── c2f268cf.png └── test_case ├── by-location.html ├── submit-form-by-js.html └── submit-form.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSREI/page-redirect-code-location-hook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSREI/page-redirect-code-location-hook/HEAD/README.md -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSREI/page-redirect-code-location-hook/HEAD/main.js -------------------------------------------------------------------------------- /markdown-images/README_images/02986e81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSREI/page-redirect-code-location-hook/HEAD/markdown-images/README_images/02986e81.png -------------------------------------------------------------------------------- /markdown-images/README_images/4ca71531.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSREI/page-redirect-code-location-hook/HEAD/markdown-images/README_images/4ca71531.png -------------------------------------------------------------------------------- /markdown-images/README_images/c2f268cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSREI/page-redirect-code-location-hook/HEAD/markdown-images/README_images/c2f268cf.png -------------------------------------------------------------------------------- /test_case/by-location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSREI/page-redirect-code-location-hook/HEAD/test_case/by-location.html -------------------------------------------------------------------------------- /test_case/submit-form-by-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSREI/page-redirect-code-location-hook/HEAD/test_case/submit-form-by-js.html -------------------------------------------------------------------------------- /test_case/submit-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSREI/page-redirect-code-location-hook/HEAD/test_case/submit-form.html --------------------------------------------------------------------------------