Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc-browser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'keepassxc-browser/background/init.js')
-rw-r--r--keepassxc-browser/background/init.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/keepassxc-browser/background/init.js b/keepassxc-browser/background/init.js
index 14202f6..fec0ccb 100644
--- a/keepassxc-browser/background/init.js
+++ b/keepassxc-browser/background/init.js
@@ -71,6 +71,7 @@ browser.tabs.onActivated.addListener(async function(activeInfo) {
* Update browserAction on every update of the page
* @param {integer} tabId
* @param {object} changeInfo
+ * @param {object} tab
*/
browser.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
// If the tab URL has changed (e.g. logged in) clear credentials
@@ -86,6 +87,21 @@ browser.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
}
});
+/**
+ * Detects page redirects and increases the count. Count is reset after a normal navigation event.
+ * Form submit is counted as one.
+ * @param {object} details
+ */
+browser.webNavigation.onCommitted.addListener((details) => {
+ if ((details.transitionQualifiers.length > 0 && details.transitionQualifiers[0] === 'client_redirect') ||
+ details.transitionType === 'form_submit') {
+ page.redirectCount += 1;
+ return;
+ }
+
+ page.redirectCount = 0;
+});
+
browser.runtime.onMessage.addListener(kpxcEvent.onMessage);
const contextMenuItems = [