-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 404b018
Showing
11 changed files
with
3,906 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.