Skip to content

Commit 1ad5d83

Browse files
committed
Fix MD5 function and use crypto lib
1 parent 9ffdda4 commit 1ad5d83

File tree

5 files changed

+31
-728
lines changed

5 files changed

+31
-728
lines changed

hackbar/manifest.json

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,30 @@
11
{
2-
"applications":{
3-
"gecko":{
4-
"id":"hackbar@chewbaka"
5-
}
6-
},
7-
"author":"Chewbaka",
2+
"applications": {
3+
"gecko": {
4+
"id": "hackbar@chewbaka"
5+
}
6+
},
7+
"author": "Chewbaka",
88
"description": "A HackBar for new firefox (Firefox Quantum). This addon is written in webextension and alternatives to the XUL version of original Hackbar.",
99
"manifest_version": 2,
1010
"name": "HackBar V2",
11-
"version": "2.5.3",
11+
"version": "2.5.4",
1212
"homepage_url": "https://github.com/Hack-Free/HackBar",
1313
"icons": {
1414
"48": "icons/icon.png"
1515
},
16-
"permissions": ["tabs", "activeTab", "webRequest", "webRequestBlocking", "<all_urls>", "storage"],
16+
"permissions": [
17+
"tabs",
18+
"activeTab",
19+
"webRequest",
20+
"webRequestBlocking",
21+
"<all_urls>",
22+
"storage"
23+
],
1724
"devtools_page": "theme/hackbar.html",
1825
"background": {
19-
"scripts": ["background.js"]
26+
"scripts": [
27+
"background.js"
28+
]
2029
}
21-
}
30+
}

hackbar/theme/hackbar-panel.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<link rel="stylesheet" href="css/bootstrap.min.css"/>
77
<link rel="stylesheet" href="css/font-awesome-all.min.css"/>
88
<link rel="stylesheet" href="css/style.css"/>
9+
<script src="js/crypto-js-4.2.0.min.js"></script>
910
</head>
1011
<body>
1112
<div class="container-fluid" style="padding-top: 5px;">

0 commit comments

Comments
 (0)