Skip to content

Commit

Permalink
V1.0.3 Firefox requires id for signing
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrews54757 committed Sep 7, 2023
1 parent ed205a9 commit f294d75
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 12 deletions.
24 changes: 24 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

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 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.

For more information, please refer to <https://unlicense.org>
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,22 @@ Allows you to use developer tools on websites which utilize anti-debug technique
2. getter traps
3. Console.clear() spam

## What it does:
## What it does

1. console.clear and console.table are set to do nothing.
2. console.log is overridden to filter DOM elements, functions, and objects with custom getters
3. Functions containing debugger calls are removed
4. setInterval checks for anti debugging scripts
5. ~~`resize` event is removed~~ (Only prints for now)

Please report any issues to the Github:
https://github.com/Andrews54757/Anti-Anti-Debug/issues

### This extension may break some websites which rely on certain specific logging tools. It is recommended to enable the extension only when needed.

Debug icons created by Alfian Dwi Hartanto - Flaticon

## Troubleshooting Tips

1. Open devtools in new window, otherwise sites may detect using viewport width/height information
2. Disable source maps in devtools. Some sites will detect when source maps are automatically loaded through the devtools
3. Open devtools first, and then navigate to the site
9 changes: 1 addition & 8 deletions anti-anti-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,14 +155,7 @@
}
return originals.setInterval.apply(window, args);
}

window.addEventListener = function(...args) {
if (args[0] === "resize") {
originals.log("Prevented resize event listener");
}
return originals.addEventListener.apply(window, args);
}


document.createElement = function (el, o) {
var string = el.toString();
var element = originals.createElement.apply(document, [string, o]);
Expand Down
10 changes: 8 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Anti Anti Debug",
"description": "Be able to use developer tools again",
"version": "1.0.2",
"version": "1.0.3",
"author": "Andrew S",
"icons": {
"16": "debug-16.png",
Expand Down Expand Up @@ -34,5 +34,11 @@
"<all_urls>"
]
}
]
],
"browser_specific_settings": {
"gecko": {
"id": "anti-anti-debug@andrews",
"strict_min_version": "109.0"
}
}
}

0 comments on commit f294d75

Please sign in to comment.