Skip to content

Commit 97ed74e

Browse files
committed
Release version 2.14
Fix a bug where the extension would not work at all sometimes
1 parent 6c2da80 commit 97ed74e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

content.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ void function() {
2626
chrome.runtime.sendMessage({
2727
action: "getSource",
2828
source: document.documentElement.outerHTML,
29-
textContent: document.title + clonedDocument.textContent
29+
textContent: document.title + clonedDocument.documentElement.textContent
3030
});
3131
}();

dynamicdetection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ void function() {
4141
chrome.runtime.sendMessage({
4242
action: "getSource",
4343
source: document.documentElement.outerHTML,
44-
textContent: document.title + clonedDocument.textContent
44+
textContent: document.title + clonedDocument.documentElement.textContent
4545
});
4646
};
4747

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"short_name": "DynamicHistory",
1010
"author": "nulldev",
1111
"description": "Automagically delete history based on the keywords on the page!",
12-
"version": "2.13",
12+
"version": "2.14",
1313
"options_ui": {
1414
"page": "options.html",
1515
"chrome_style": true,

0 commit comments

Comments
 (0)