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

Commit 387a1dd

Browse files
committed
Improve paywall detection
1 parent 10ecb4b commit 387a1dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "Seeking Alpha Paywall Remover",
4-
"version": "1.10",
4+
"version": "1.11",
55
"description": "Removes the paywall from news and article pages on the seekingalpha.com website",
66
"icons": {
77
"48": "icons/48x48.png",

paywall-remover.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ new window.MutationObserver(() => {
2525
preparePayWallRemover();
2626
this.disconnect();
2727
}
28-
}).observe(document, { subtree: true, childList: true });
28+
}).observe(document, { subtree: true, childList: true, attributes: true });
2929

3030
function preparePayWallRemover() {
3131
// Code checking if the paywall has been displayed

0 commit comments

Comments
 (0)