aboutsummaryrefslogtreecommitdiff
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
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
-rw-r--r--README.txt2
-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
-rw-r--r--common/connection_types.js2
-rw-r--r--common/lock.js2
-rw-r--r--common/misc.js2
-rw-r--r--common/once.js2
-rw-r--r--common/patterns.js2
-rw-r--r--common/storage_client.js2
-rw-r--r--common/stored_types.js2
-rw-r--r--content/main.js2
-rw-r--r--content/page_actions.js2
-rw-r--r--copyright4
-rw-r--r--html/display-panel.js2
-rw-r--r--html/options.html2
-rw-r--r--html/options_main.js2
-rw-r--r--icons/hachette.png (renamed from icons/myext.png)bin13130 -> 13130 bytes
-rw-r--r--manifest.json10
23 files changed, 30 insertions, 30 deletions
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 <koszko@koszko.org>
2021 jahoti <jahoti@tilde.team>
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 <koszko@koszko.org>
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 @@
<html>
<head>
<meta charset="utf-8"/>
- <title>Myext options</title>
+ <title>Hachette options</title>
<style>
input[type="checkbox"], input[type="radio"], .hide, .popup.hide {
display: none;
diff --git a/html/options_main.js b/html/options_main.js
index f7adf39..cf4c9b1 100644
--- a/html/options_main.js
+++ b/html/options_main.js
@@ -1,5 +1,5 @@
/**
- * Myext HTML options page main script
+ * Hachette HTML options page main script
*
* Copyright (C) 2021 Wojtek Kosior
* Redistribution terms are gathered in the `copyright' file.
diff --git a/icons/myext.png b/icons/hachette.png
index 1dd025b..1dd025b 100644
--- a/icons/myext.png
+++ b/icons/hachette.png
Binary files differ
diff --git a/manifest.json b/manifest.json
index 20568a0..3d21e82 100644
--- a/manifest.json
+++ b/manifest.json
@@ -2,13 +2,13 @@
// Redistribution terms are gathered in the `copyright' file.
{
"manifest_version": 2,
- "name": "My extension",
- "short_name": "Myext",
+ "name": "Hachette",
+ "short_name": "Hachette",
"version": "0.0.1",_CHROMIUM_KEY_
"author": "various",
"description": "Kill the web&js",_GECKO_APPLICATIONS_
"icons":{
- "64": "icons/myext.png"
+ "64": "icons/hachette.png"
},
"permissions": [
"contextMenus",
@@ -24,9 +24,9 @@
"browser_action": {
"browser_style": true,
"default_icon": {
- "64": "icons/myext.png"
+ "64": "icons/hachette.png"
},
- "default_title": "Myext",
+ "default_title": "Hachette",
"default_popup": "html/display-panel.html"
},
"options_ui": {