Skip to content

Commit

Permalink
Minor fixes following Mozilla approval process
Browse files Browse the repository at this point in the history
The extension has a UUID now.
  • Loading branch information
aledeg committed May 26, 2018
1 parent cd9ca0e commit 257552a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Binary file modified icons/linkdump-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"applications": {
"gecko": {
"id": "{c72c9666-1bfa-4558-ab70-44cb09caaac6}"
}
},

"manifest_version": 2,
"name": "LinkDump",
"version": "0.1",
"version": "1.0",
"description": "Allows to select links and dump them in a file",
"icons": {
"48": "icons/linkdump-48.png"
Expand Down
2 changes: 1 addition & 1 deletion popup/load.content.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function loadDump() {
const listItem = document.createElement('p');
const itemLink = document.createElement('a');
itemLink.href = item.url;
itemLink.innerHTML = item.title;
itemLink.textContent = item.title;
const itemDelete = document.createElement('button');
itemDelete.dataset.index = index;
itemDelete.onclick = deleteItem;
Expand Down

0 comments on commit 257552a

Please sign in to comment.