├── .gitignore ├── README.md ├── background.js ├── history.html ├── history.js ├── icon.png ├── manifest.json ├── popup.html └── popup.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeifElsallamy/Blind-XSS-Manager/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeifElsallamy/Blind-XSS-Manager/HEAD/background.js -------------------------------------------------------------------------------- /history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeifElsallamy/Blind-XSS-Manager/HEAD/history.html -------------------------------------------------------------------------------- /history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeifElsallamy/Blind-XSS-Manager/HEAD/history.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeifElsallamy/Blind-XSS-Manager/HEAD/icon.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeifElsallamy/Blind-XSS-Manager/HEAD/manifest.json -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeifElsallamy/Blind-XSS-Manager/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeifElsallamy/Blind-XSS-Manager/HEAD/popup.js --------------------------------------------------------------------------------