├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── LICENSE ├── README.md ├── img └── logo │ ├── chrome.png │ ├── firefox.png │ ├── opera.png │ └── safari.png ├── index.html ├── remove_web_limits.user.js └── style.css /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat7373/remove-web-limits/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat7373/remove-web-limits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat7373/remove-web-limits/HEAD/README.md -------------------------------------------------------------------------------- /img/logo/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat7373/remove-web-limits/HEAD/img/logo/chrome.png -------------------------------------------------------------------------------- /img/logo/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat7373/remove-web-limits/HEAD/img/logo/firefox.png -------------------------------------------------------------------------------- /img/logo/opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat7373/remove-web-limits/HEAD/img/logo/opera.png -------------------------------------------------------------------------------- /img/logo/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat7373/remove-web-limits/HEAD/img/logo/safari.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat7373/remove-web-limits/HEAD/index.html -------------------------------------------------------------------------------- /remove_web_limits.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat7373/remove-web-limits/HEAD/remove_web_limits.user.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat7373/remove-web-limits/HEAD/style.css --------------------------------------------------------------------------------