From 6b12a034efe8918eb45f09aa5aad94177eb51049 Mon Sep 17 00:00:00 2001 From: jahoti Date: Mon, 19 Jul 2021 00:00:00 +0000 Subject: Refer to the extension consistently as "Hachette" and remove TODOS.org from the copyright file --- README.txt | 2 +- background/main.js | 8 ++++---- background/message_server.js | 2 +- background/page_actions_server.js | 2 +- background/policy_injector.js | 2 +- background/settings_query.js | 2 +- background/storage.js | 2 +- background/storage_server.js | 2 +- common/connection_types.js | 2 +- common/lock.js | 2 +- common/misc.js | 2 +- common/once.js | 2 +- common/patterns.js | 2 +- common/storage_client.js | 2 +- common/stored_types.js | 2 +- content/main.js | 2 +- content/page_actions.js | 2 +- copyright | 4 ++-- html/display-panel.js | 2 +- html/options.html | 2 +- html/options_main.js | 2 +- icons/hachette.png | Bin 0 -> 13130 bytes icons/myext.png | Bin 13130 -> 0 bytes manifest.json | 10 +++++----- 24 files changed, 30 insertions(+), 30 deletions(-) create mode 100644 icons/hachette.png delete mode 100644 icons/myext.png diff --git a/README.txt b/README.txt index 94373a9..4732d84 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -# My extension - Make The Web Great Again! # +# Hachette - Make The Web Great Again! # This extension's goal is to allow replacing javascript served by websites with scripts specified by user. Something like NoScript and Greasemonkey 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. diff --git a/common/connection_types.js b/common/connection_types.js index ce63e55..41bde75 100644 --- a/common/connection_types.js +++ b/common/connection_types.js @@ -1,5 +1,5 @@ /** - * Myext background scripts message connection types "enum" + * Hachette background scripts message connection types "enum" * * Copyright (C) 2021 Wojtek Kosior * Redistribution terms are gathered in the `copyright' file. diff --git a/common/lock.js b/common/lock.js index 1130762..822ad1b 100644 --- a/common/lock.js +++ b/common/lock.js @@ -1,5 +1,5 @@ /** - * Myext lock (aka binary semaphore aka mutex) + * Hachette lock (aka binary semaphore aka mutex) * * Copyright (C) 2021 Wojtek Kosior * Redistribution terms are gathered in the `copyright' file. diff --git a/common/misc.js b/common/misc.js index 472620e..b78dbb9 100644 --- a/common/misc.js +++ b/common/misc.js @@ -1,5 +1,5 @@ /** - * Myext miscellaneous operations refactored to a separate file + * Hachette miscellaneous operations refactored to a separate file * * Copyright (C) 2021 Wojtek Kosior * Copyright (C) 2021 jahoti diff --git a/common/once.js b/common/once.js index e3e6dbe..098b43f 100644 --- a/common/once.js +++ b/common/once.js @@ -1,5 +1,5 @@ /** - * Myext feature initialization promise + * Hachette feature initialization promise * * Copyright (C) 2021 Wojtek Kosior * Redistribution terms are gathered in the `copyright' file. diff --git a/common/patterns.js b/common/patterns.js index f7da0ff..be7c650 100644 --- a/common/patterns.js +++ b/common/patterns.js @@ -1,5 +1,5 @@ /** - * Hydrilla/Lernette operations on page url patterns + * Hachette operations on page url patterns * * Copyright (C) 2021 Wojtek Kosior * Redistribution terms are gathered in the `copyright' file. diff --git a/common/storage_client.js b/common/storage_client.js index 2bbddb6..4849a65 100644 --- a/common/storage_client.js +++ b/common/storage_client.js @@ -1,5 +1,5 @@ /** - * Myext storage through connection (client side) + * Hachette storage through connection (client side) * * Copyright (C) 2021 Wojtek Kosior * Redistribution terms are gathered in the `copyright' file. diff --git a/common/stored_types.js b/common/stored_types.js index ef1339f..a6f1f2f 100644 --- a/common/stored_types.js +++ b/common/stored_types.js @@ -1,5 +1,5 @@ /** - * Myext stored item types "enum" + * Hachette stored item types "enum" * * Copyright (C) 2021 Wojtek Kosior * Redistribution terms are gathered in the `copyright' file. diff --git a/content/main.js b/content/main.js index a5e04fd..826019a 100644 --- a/content/main.js +++ b/content/main.js @@ -1,5 +1,5 @@ /** - * Myext main content script run in all frames + * Hachette main content script run in all frames * * Copyright (C) 2021 Wojtek Kosior * Copyright (C) 2021 jahoti diff --git a/content/page_actions.js b/content/page_actions.js index fd405fe..07fd1bc 100644 --- a/content/page_actions.js +++ b/content/page_actions.js @@ -1,5 +1,5 @@ /** - * Myext handling of page actions in content scripts + * Hachette handling of page actions in content scripts * * Copyright (C) 2021 Wojtek Kosior * Redistribution terms are gathered in the `copyright' file. diff --git a/copyright b/copyright index 4ff7483..ed659f3 100644 --- a/copyright +++ b/copyright @@ -1,5 +1,5 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: Myext +Upstream-Name: Hachette Source: https://git.koszko.org/browser-extension/ Files: * @@ -15,7 +15,7 @@ Copyright: 2021 Wojtek Kosior 2021 jahoti License: GPL-3+-javascript or Alicense-1.0 -Files: icons/myext.png README.txt TODOS.org copyright +Files: icons/hachette.png README.txt copyright Copyright: 2021 Wojtek Kosior License: GPL-3+ or Alicense-1.0 or CC-BY-SA-4.0 diff --git a/html/display-panel.js b/html/display-panel.js index 9ae35fd..650c234 100644 --- a/html/display-panel.js +++ b/html/display-panel.js @@ -1,5 +1,5 @@ /** - * Myext display panel logic + * Hachette display panel logic * * Copyright (C) 2021 Wojtek Kosior * Redistribution terms are gathered in the `copyright' file. diff --git a/html/options.html b/html/options.html index 092327a..bfb9e52 100644 --- a/html/options.html +++ b/html/options.html @@ -7,7 +7,7 @@ - Myext options + Hachette options