renamed GPG4Browsers to OpenPGP.js

This commit is contained in:
Alexander Willner 2012-01-15 00:22:14 +01:00
parent f7b505fa0b
commit 7475437d5a
4 changed files with 65 additions and 65 deletions

View File

@ -90,9 +90,9 @@ function show_pgp_alert() {
div.setAttribute("id", "gpg4browsers_alert");
div.setAttribute("style","position: fixed; top: 0px; width: 100%; background-color: #eeeeff; border-bottom: 1px solid #aaa;");
if (current_message_type == 0)
div.appendChild(document.createTextNode("This mail is encrypted. Do you want to open it with GPG4Browsers?"));
div.appendChild(document.createTextNode("This mail is encrypted. Do you want to open it with OpenPGP.js?"));
else if (current_message_type == 1)
div.appendChild(document.createTextNode("This mail is signed. Do you want to open it with GPG4Browsers?"));
div.appendChild(document.createTextNode("This mail is signed. Do you want to open it with OpenPGP.js?"));
div.appendChild(buttonyes);
div.appendChild(buttonno);
document.body.appendChild(div);

View File

@ -1,7 +1,7 @@
{
"name" : "GPG4Browsers",
"name" : "OpenPGP.js",
"version" : "0.1",
"description" : "An OpenPGP implementation in javascript",
"description" : "OpenPGP.js integration for Google Mail",
"background_page" : "background.html",
"options_page": "options.html",
"page_action" :

View File

@ -59,7 +59,7 @@
<script type="text/javascript" src="js/openpgp.msg.publickey.js"></script>
<script type="text/javascript" src="js/util.js"></script>
<title>GPG4Browsers</title>
<title>OpenPGP.js</title>
</head>
<style>

View File

@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>GPG4Browsers - PGP Message Options</title>
<title>OpenPGP.js - PGP Message Options</title>
</head>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="js/ciphers/hash/sha.js"></script>