Skip to content

Commit 3dcd8e7

Browse files
author
Mark Vincent
authored
Merge pull request #4 from WildcardSearch/maintenance
0.0.2 Release
2 parents 795a214 + cb9c077 commit 3dcd8e7

File tree

5 files changed

+111
-111
lines changed

5 files changed

+111
-111
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# BB Code Helper 0.0.1
1+
# BB Code Helper 0.0.2
22

33
Adds a context submenu to tag quotes, images, and links for as BB Code to be pasted into forum posts.
44

_locales/en/messages.json

+61-61
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,62 @@
11
{
2-
"extensionName": {
3-
"message": "BB Code Helper",
4-
"description": "Name of the extension."
5-
},
6-
7-
"extensionDescription": {
8-
"message": "Adds a context submenu to tag quotes, images, and links for as BB Code to be pasted into forum posts.",
9-
"description": "Description of the add-on."
10-
},
11-
12-
"menuItemMultiMode": {
13-
"message": "Multi-mode?",
14-
"description": "Title of context menu item that toggles multiple tags when clicked."
15-
},
16-
17-
"menuItemQuote": {
18-
"message": "Quote Selection",
19-
"description": "Title of context menu item that tags the selected text when clicked."
20-
},
21-
22-
"menuItemImageFull": {
23-
"message": "Tag Image With Link",
24-
"description": "Title of context menu item that tags both the image and its link (if any) when clicked."
25-
},
26-
27-
"menuItemImage": {
28-
"message": "Tag Image",
29-
"description": "Title of context menu item that tags an image when clicked."
30-
},
31-
32-
"menuItemLink": {
33-
"message": "Tag Link",
34-
"description": "Title of context menu item that tags a link when clicked."
35-
},
36-
37-
"menuClearClipboard": {
38-
"message": "Clear Clipboard",
39-
"description": "Title of context menu item that clears the clipboard when clicked."
40-
},
41-
42-
"errorNoSelection": {
43-
"message": "No text selected...",
44-
"description": "Error message when there is no selected text."
45-
},
46-
47-
"errorNoImage": {
48-
"message": "No image...",
49-
"description": "Error message when there is no image."
50-
},
51-
52-
"errorNoLink": {
53-
"message": "There is no link...",
54-
"description": "Error message when there is no image."
55-
},
56-
57-
"errorGeneric": {
58-
"message": "Error message: ",
59-
"description": "Generic error message."
60-
}
61-
62-
}
2+
"extensionName": {
3+
"message": "BB Code Helper",
4+
"description": "Name of the extension."
5+
},
6+
7+
"extensionDescription": {
8+
"message": "Adds a context submenu to tag quotes, images, and links for as BB Code to be pasted into forum posts.",
9+
"description": "Description of the add-on."
10+
},
11+
12+
"menuItemMultiMode": {
13+
"message": "Multi-mode?",
14+
"description": "Title of context menu item that toggles multiple tags when clicked."
15+
},
16+
17+
"menuItemQuote": {
18+
"message": "Quote Selection",
19+
"description": "Title of context menu item that tags the selected text when clicked."
20+
},
21+
22+
"menuItemImageFull": {
23+
"message": "Tag Image With Link",
24+
"description": "Title of context menu item that tags both the image and its link (if any) when clicked."
25+
},
26+
27+
"menuItemImage": {
28+
"message": "Tag Image",
29+
"description": "Title of context menu item that tags an image when clicked."
30+
},
31+
32+
"menuItemLink": {
33+
"message": "Tag Link",
34+
"description": "Title of context menu item that tags a link when clicked."
35+
},
36+
37+
"menuClearClipboard": {
38+
"message": "Clear Clipboard",
39+
"description": "Title of context menu item that clears the clipboard when clicked."
40+
},
41+
42+
"errorNoSelection": {
43+
"message": "No text selected...",
44+
"description": "Error message when there is no selected text."
45+
},
46+
47+
"errorNoImage": {
48+
"message": "No image...",
49+
"description": "Error message when there is no image."
50+
},
51+
52+
"errorNoLink": {
53+
"message": "There is no link...",
54+
"description": "Error message when there is no image."
55+
},
56+
57+
"errorGeneric": {
58+
"message": "Error message: ",
59+
"description": "Generic error message."
60+
}
61+
62+
}

background.js

+22-23
Original file line numberDiff line numberDiff line change
@@ -7,41 +7,41 @@
77
*/
88

99
browser.contextMenus.create({
10-
id: "mft-selection",
11-
title: browser.i18n.getMessage("menuItemQuote"),
12-
contexts: ["selection"],
10+
id: "mft-selection",
11+
title: browser.i18n.getMessage("menuItemQuote"),
12+
contexts: ["selection"],
1313
});
1414

1515
browser.contextMenus.create({
16-
id: "mft-image-full",
17-
title: browser.i18n.getMessage("menuItemImageFull"),
18-
contexts: ["image"],
16+
id: "mft-image-full",
17+
title: browser.i18n.getMessage("menuItemImageFull"),
18+
contexts: ["image"],
1919
});
2020

2121
browser.contextMenus.create({
22-
id: "mft-image",
23-
title: browser.i18n.getMessage("menuItemImage"),
24-
contexts: ["image"],
22+
id: "mft-image",
23+
title: browser.i18n.getMessage("menuItemImage"),
24+
contexts: ["image"],
2525
});
2626

2727
browser.contextMenus.create({
28-
id: "mft-link",
29-
title: browser.i18n.getMessage("menuItemLink"),
30-
contexts: ["link"],
28+
id: "mft-link",
29+
title: browser.i18n.getMessage("menuItemLink"),
30+
contexts: ["link"],
3131
});
3232

3333
browser.contextMenus.create({
34-
id: "mft-clear-clipboard",
35-
title: browser.i18n.getMessage("menuClearClipboard"),
36-
contexts: ["all"],
34+
id: "mft-clear-clipboard",
35+
title: browser.i18n.getMessage("menuClearClipboard"),
36+
contexts: ["all"],
3737
});
3838

3939
var multiMode = false;
4040
browser.contextMenus.create({
41-
id: "mft-multi-mode",
42-
title: browser.i18n.getMessage("menuItemMultiMode"),
43-
type: "checkbox",
44-
contexts: ["all"],
41+
id: "mft-multi-mode",
42+
title: browser.i18n.getMessage("menuItemMultiMode"),
43+
type: "checkbox",
44+
contexts: ["all"],
4545
checked: multiMode,
4646
});
4747

@@ -65,11 +65,10 @@ function onClicked(info, tab) {
6565
switch (info.menuItemId) {
6666
case "mft-multi-mode":
6767
multiMode = !multiMode;
68-
break;
68+
return;
6969
case "mft-clear-clipboard":
7070
clearClipboard(tab);
7171
return;
72-
break;
7372
case "mft-selection":
7473
if (typeof info.selectionText == "undefined" ||
7574
!info.selectionText) {
@@ -142,8 +141,8 @@ function onClicked(info, tab) {
142141
}).then(() => {
143142
return browser.tabs.executeScript(tab.id, {
144143
code: "copyTag(" +
145-
JSON.stringify(text) + "," +
146-
mmString + ");",
144+
JSON.stringify(text) + "," +
145+
mmString + ");",
147146
});
148147
}).catch((error) => {
149148
console.error(browser.i18n.getMessage("errorGeneric") + error);

clipboard-helper.js

+11-10
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,22 @@ function copyTag(text, append) {
2525
* @param event
2626
* @return void
2727
*/
28-
function onCopy(e) {
29-
document.removeEventListener("copy", onCopy, true);
30-
e.stopImmediatePropagation();
31-
e.preventDefault();
28+
function onCopy(e) {
29+
document.removeEventListener("copy", onCopy, true);
30+
e.stopImmediatePropagation();
31+
e.preventDefault();
3232

3333
// multi-mode
34-
if (append) {
34+
if (append &&
35+
clipboardText.length > 0) {
3536
text = clipboardText + "\n" + text;
3637
}
3738

38-
e.clipboardData.setData("text/plain", text);
39-
e.clipboardData.setData("text/html", "");
40-
}
41-
document.addEventListener("copy", onCopy, true);
42-
document.execCommand("copy");
39+
e.clipboardData.setData("text/plain", text);
40+
e.clipboardData.setData("text/html", "");
41+
}
42+
document.addEventListener("copy", onCopy, true);
43+
document.execCommand("copy");
4344
}
4445

4546
/**

manifest.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
"manifest_version": 2,
3-
"name": "__MSG_extensionName__",
4-
"description": "__MSG_extensionDescription__",
5-
"version": "0.0.1",
6-
"default_locale": "en",
2+
"manifest_version": 2,
3+
"name": "__MSG_extensionName__",
4+
"description": "__MSG_extensionDescription__",
5+
"version": "0.0.2",
6+
"default_locale": "en",
77
"homepage_url": "https://github.com/WildcardSearch/BB-Code-Helper",
88

9-
"background": {
10-
"scripts": [
11-
"background.js"
12-
]
13-
},
9+
"background": {
10+
"scripts": [
11+
"background.js"
12+
]
13+
},
1414

15-
"permissions": [
16-
"activeTab",
17-
"contextMenus",
15+
"permissions": [
16+
"activeTab",
17+
"contextMenus",
1818
"clipboardRead",
19-
"clipboardWrite"
20-
],
21-
19+
"clipboardWrite"
20+
],
21+
2222
"icons": {
2323
"16": "icons/icon-16.png",
2424
"32": "icons/icon-32.png",

0 commit comments

Comments
 (0)