aboutsummaryrefslogtreecommitdiff
path: root/background
diff options
context:
space:
mode:
authorjahoti <jahoti@tilde.team>2021-07-19 00:00:00 +0000
committerjahoti <jahoti@tilde.team>2021-07-19 00:00:00 +0000
commit6b12a034efe8918eb45f09aa5aad94177eb51049 (patch)
tree8ef97158020fd4ba02fe740f491f9a1a3fe17498 /background
parentecb787046271de708b94da70240713e725299d86 (diff)
downloadbrowser-extension-6b12a034efe8918eb45f09aa5aad94177eb51049.tar.gz
browser-extension-6b12a034efe8918eb45f09aa5aad94177eb51049.zip
Refer to the extension consistently as "Hachette" and remove TODOS.org
from the copyright file
Diffstat (limited to 'background')
-rw-r--r--background/main.js8
-rw-r--r--background/message_server.js2
-rw-r--r--background/page_actions_server.js2
-rw-r--r--background/policy_injector.js2
-rw-r--r--background/settings_query.js2
-rw-r--r--background/storage.js2
-rw-r--r--background/storage_server.js2
7 files changed, 10 insertions, 10 deletions
diff --git a/background/main.js b/background/main.js
index da408f9..ffa814e 100644
--- a/background/main.js
+++ b/background/main.js
@@ -1,5 +1,5 @@
/**
- * Myext main background script
+ * Hachette main background script
*
* Copyright (C) 2021 Wojtek Kosior
* Redistribution terms are gathered in the `copyright' file.
@@ -22,7 +22,7 @@ start_page_actions_server();
start_policy_injector();
start_page_info_server();
-async function init_myext(install_details)
+async function init_ext(install_details)
{
console.log("details:", install_details);
if (install_details.reason != "install")
@@ -44,6 +44,6 @@ async function init_myext(install_details)
}
}
-browser.runtime.onInstalled.addListener(init_myext);
+browser.runtime.onInstalled.addListener(init_ext);
-console.log("hello, myext");
+console.log("hello, hachette");
diff --git a/background/message_server.js b/background/message_server.js
index a541a04..ea40487 100644
--- a/background/message_server.js
+++ b/background/message_server.js
@@ -1,5 +1,5 @@
/**
- * Myext message server
+ * Hachette message server
*
* Copyright (C) 2021 Wojtek Kosior
* Redistribution terms are gathered in the `copyright' file.
diff --git a/background/page_actions_server.js b/background/page_actions_server.js
index 2d9c333..c6800a0 100644
--- a/background/page_actions_server.js
+++ b/background/page_actions_server.js
@@ -1,5 +1,5 @@
/**
- * Myext serving of page actions to content scripts
+ * Hachette serving of page actions to content scripts
*
* Copyright (C) 2021 Wojtek Kosior
* Redistribution terms are gathered in the `copyright' file.
diff --git a/background/policy_injector.js b/background/policy_injector.js
index 2cd7b6e..8301c3f 100644
--- a/background/policy_injector.js
+++ b/background/policy_injector.js
@@ -1,5 +1,5 @@
/**
- * Myext injecting policy to page using webRequest
+ * Hachette injecting policy to page using webRequest
*
* Copyright (C) 2021 Wojtek Kosior
* Copyright (C) 2021 jahoti
diff --git a/background/settings_query.js b/background/settings_query.js
index d509b09..d0d9511 100644
--- a/background/settings_query.js
+++ b/background/settings_query.js
@@ -1,5 +1,5 @@
/**
- * Myext querying page settings with regard to wildcard records
+ * Hachette querying page settings with regard to wildcard records
*
* Copyright (C) 2021 Wojtek Kosior
* Redistribution terms are gathered in the `copyright' file.
diff --git a/background/storage.js b/background/storage.js
index 48e4e52..7229a2d 100644
--- a/background/storage.js
+++ b/background/storage.js
@@ -1,5 +1,5 @@
/**
- * Myext storage manager
+ * Hachette storage manager
*
* Copyright (C) 2021 Wojtek Kosior
* Redistribution terms are gathered in the `copyright' file.
diff --git a/background/storage_server.js b/background/storage_server.js
index d39898d..554aff2 100644
--- a/background/storage_server.js
+++ b/background/storage_server.js
@@ -1,5 +1,5 @@
/**
- * Myext storage through connection (server side)
+ * Hachette storage through connection (server side)
*
* Copyright (C) 2021 Wojtek Kosior
* Redistribution terms are gathered in the `copyright' file.