├── .gitignore ├── README.md ├── background.js ├── content.js ├── detectPhish.js ├── icon.png ├── imgs └── readme_img.png ├── jquery.js ├── main.js ├── manifest.json ├── package.json ├── warn.html └── warningScript.js /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !/.gitignore 3 | node_modules 4 | nohup.out 5 | 6 | 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/background.js -------------------------------------------------------------------------------- /content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/content.js -------------------------------------------------------------------------------- /detectPhish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/detectPhish.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/icon.png -------------------------------------------------------------------------------- /imgs/readme_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/imgs/readme_img.png -------------------------------------------------------------------------------- /jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/jquery.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/main.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/package.json -------------------------------------------------------------------------------- /warn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/warn.html -------------------------------------------------------------------------------- /warningScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goelrohan6/phishing-detection/HEAD/warningScript.js --------------------------------------------------------------------------------