├── .github └── FUNDING.yml ├── .gitignore ├── Privacy-Policy.md ├── README.md ├── background.js ├── content.js ├── images ├── demo.png └── icon.png ├── manifest.json ├── popup.html └── popup.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: the2ndfloorguy -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /Privacy-Policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pankajtanwarbanna/scream-to-unlock/HEAD/Privacy-Policy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pankajtanwarbanna/scream-to-unlock/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pankajtanwarbanna/scream-to-unlock/HEAD/background.js -------------------------------------------------------------------------------- /content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pankajtanwarbanna/scream-to-unlock/HEAD/content.js -------------------------------------------------------------------------------- /images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pankajtanwarbanna/scream-to-unlock/HEAD/images/demo.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pankajtanwarbanna/scream-to-unlock/HEAD/images/icon.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pankajtanwarbanna/scream-to-unlock/HEAD/manifest.json -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pankajtanwarbanna/scream-to-unlock/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pankajtanwarbanna/scream-to-unlock/HEAD/popup.js --------------------------------------------------------------------------------