Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
Improve paywall detection
Browse files Browse the repository at this point in the history
  • Loading branch information
krisztianb committed Oct 5, 2024
1 parent 10ecb4b commit 387a1dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Seeking Alpha Paywall Remover",
"version": "1.10",
"version": "1.11",
"description": "Removes the paywall from news and article pages on the seekingalpha.com website",
"icons": {
"48": "icons/48x48.png",
Expand Down
2 changes: 1 addition & 1 deletion paywall-remover.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ new window.MutationObserver(() => {
preparePayWallRemover();
this.disconnect();
}
}).observe(document, { subtree: true, childList: true });
}).observe(document, { subtree: true, childList: true, attributes: true });

function preparePayWallRemover() {
// Code checking if the paywall has been displayed
Expand Down

0 comments on commit 387a1dd

Please sign in to comment.