Skip to content

Commit

Permalink
Rename addon to "Google Keep Tab"
Browse files Browse the repository at this point in the history
  • Loading branch information
Garoe committed Mar 23, 2021
1 parent 5af9b6d commit d669567
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# ThunderKeepPlus
Unofficial Google Keep extension for Thunderbird, it adds a button that opens a Google Keep tab in Thunderbird.
# Google Keep Tab
Unofficial Google Keep add-on for Thunderbird, it adds a button that opens a Google Keep tab in Thunderbird.
The [home page](https://addons.mozilla.org/thunderbird/addon/thunderkeepplus/) of the extension contains some pictures and reviews.

#### Installing
Simply search for ThunderKeepPlus inside Thunderbird and the addon should show up.
Simply search for Google Keep inside Thunderbird and the addon should show up.

#### Installing from sources
Download the repository, zip it, rename it to ThunderKeepPlus.xpi and choose install addon from file in Thunderbird.
Download the repository, zip it, rename it to Google-Keep-Tab.xpi and choose install addon from file in Thunderbird.

In linux the xpi file can be created with the following commands
* `git clone https://github.com/Garoe/ThunderKeepPlus`
* `cd ./ThunderKeepPlus`
* `git clone https://github.com/Garoe/Thunderbird-Google-Keep-Tab`
* `cd ./Thunderbird-Google-Keep-Tab`
* `VERSION=$(cat ./manifest.json | jq --raw-output '.version')`
* `zip -r "../ThunderKeepPlus-${VERSION}-tb.xpi" *`
* `zip -r "../Google-Keep-Tab-${VERSION}-tb.xpi" *`
2 changes: 1 addition & 1 deletion _locales/de/messages.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extensionDescription": {
"message": "Google Keep für Thunderbird.",
"message": "Fügt eine Schaltfläche zum Öffnen von Google Keep in einem neuen Tab hinzu.",
"description": "Description of the extension."
}
}
2 changes: 1 addition & 1 deletion _locales/en/messages.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extensionDescription": {
"message": "Google Keep for Thunderbird.",
"message": "Adds a button to open Google Keep in a new tab.",
"description": "Description of the extension."
}
}
2 changes: 1 addition & 1 deletion _locales/es/messages.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extensionDescription": {
"message": "Google Keep en Thunderbird.",
"message": "Añade un botón que abre Google Keep en una pestaña nueva.",
"description": "Description of the extension."
}
}
6 changes: 3 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"strict_min_version": "78.0"
}
},
"name": "ThunderKeepPlus",
"name": "Google Keep Tab",
"description": "__MSG_extensionDescription__",
"author": "[Garoe Dorta]",
"homepage_url": "https://github.com/Garoe/ThunderKeepPlus/",
"version": "0.10.7",
"homepage_url": "https://github.com/Garoe/Thunderbird-Google-Keep-Tab/",
"version": "0.10.8",
"default_locale": "en",
"icons": {
"48": "skin/google_keep_icon.svg",
Expand Down
2 changes: 1 addition & 1 deletion src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function debug_msg(message){
if(is_release){
return;
}
console.debug("ThunderKeepPlus: " + message);
console.debug("Google-Keep-Tab: " + message);
}

debug_msg("Loading");
Expand Down

0 comments on commit d669567

Please sign in to comment.