1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-18 09:13:15 +00:00

extension debug

This commit is contained in:
Kyle Spearrin
2016-05-25 00:09:11 -04:00
parent 83e872f4b6
commit 38a8010b81
2 changed files with 30 additions and 18 deletions

View File

@@ -2,6 +2,9 @@
BitwardenExtension.prototype = {
run: function (arguments) {
console.log("Run");
console.log(arguments);
var args = {
content: document.body.innerHTML,
uri: document.baseURI
@@ -9,7 +12,8 @@ BitwardenExtension.prototype = {
arguments.completionFunction(args);
},
finalize: function (arguments) {
alert('finalize');
console.log("Finalize");
console.log(arguments);
}
};