Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Gyran committed Apr 10, 2014
0 parents commit 404b018
Show file tree
Hide file tree
Showing 11 changed files with 3,906 additions and 0 deletions.
30 changes: 30 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"manifest_version": 2,

"name": "1Passwordanywhere Extension",
"description": "Fill in your 1Password passwords using 1Passwordanywhere on any platform",
"version": "0.1",

"commands": {
"_execute_page_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
}
}
},

"browser_action": {
"default_popup": "popup.html",
"default_title": "1Passwordanywhere Extension"
},

"permissions": [
"http://*/*",
"https://*/*",
"tabs",
"storage"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",

"options_page": "options.html"
}
15 changes: 15 additions & 0 deletions options.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>1password anywhere extension</title>
</head>
<body>
<div id="status"></div>

Baseurl:
<input type="text" id="baseurl"><br>
<button id="save">Save</button>

<script src="scripts/options.js"></script>
</body>
</html>
20 changes: 20 additions & 0 deletions popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>

</head>
<body>
<form id="frmVerify" action="">
Master password: <input type="password" id="masterpassword">
<button id="btnVerify">Verify</button>
</form>

<script src="scripts/tld.min.js"></script>
<script src="scripts/1passwordanywhere.include.js"></script>
<script src="scripts/1passwordanywhere.js"></script>
<script src="scripts/q.js"></script>
<script src="scripts/OnePassword.js"></script>

<script src="scripts/popup.js"></script>
</body>
</html>
Loading

0 comments on commit 404b018

Please sign in to comment.