Skip to content

Commit

Permalink
chore: recode
Browse files Browse the repository at this point in the history
  • Loading branch information
Lumm1t committed Oct 16, 2020
1 parent dcfc137 commit 0014bd7
Show file tree
Hide file tree
Showing 19 changed files with 5,404 additions and 21 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["@babel/preset-env", "@babel/preset-typescript"]
}
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* linguist-vendored
*.ts linguist-vendored=false
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2020 Lumm1t

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,27 @@ Minimalistic Chrome extension - bypass for blur check and time limit on testport
[Unofficial extension in Chrome web store](https://chrome.google.com/webstore/detail/anti-testportal/dpgfbfopkfdfmlfdpmoanamopdnibhkl)
(thanks to szoppracz07.ovh)

1. **Download this repo as a ZIP file** (`Green button *Clone or download* -> Download ZIP`).
1. **Go to the Releases page** (`then download newest version (.zip)`).
2. **Unpack** ZIP file.
3. **Go to the extensions page** (`chrome://extensions or Chrome menu -> More tools -> Extensions`).
4. Enable **Developer mode** (`upper right corner`).
5. Click **Load unpacked** (`or drag the folder anywhere on the page`).
6. **Indicate the folder** you unpacked.

## Made using:

- [TypeScript](https://www.typescriptlang.org/)
- [Webpack](https://webpack.js.org/)
- [Babel](https://babeljs.io/)

## Contributing

Pull requests are welcome.

## License

[MIT](https://choosealicense.com/licenses/mit/)

## Motivation

I got few negative grades at school because of this website, because I am too busy to learn :]
18 changes: 0 additions & 18 deletions antitestportal.js

This file was deleted.

File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
5 changes: 3 additions & 2 deletions manifest.json → dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"name": "Anti Testportal",
"description": "Bypass for blur check and time limit on testportal.pl",
"version": "2.6",
"version": "3.0.0",
"manifest_version": 2,
"content_scripts": [
{
"matches": ["https://*.testportal.pl/*", "https://*.testportal.net/*"],
"js": ["antitestportal.js"],
"js": ["script.js"],
"all_frames": true
}
],
"web_accessible_resources": ["bypass.js"],
"icons": {
"16": "icons/antitestportal16.png",
"32": "icons/antitestportal32.png",
Expand Down
1 change: 1 addition & 0 deletions dist/script.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0014bd7

Please sign in to comment.