Skip to content

Commit

Permalink
Merge pull request #182 from GitTom/master
Browse files Browse the repository at this point in the history
Removed ClipboardRead permission
  • Loading branch information
miquelfire authored May 18, 2021
2 parents 6f1c9bf + 76947eb commit dd692ab
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
*.zip
*.7z
/CWS-*

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
0.9.1 - 2021-05-18
* Removed 'clipboardRead' from manifest - not used and shouldn't have been requested.

0.9.0 - 2021-05-16

* Includes some changes that @heavensrevenge made back in 2018 after 0.8.9.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ Later, if you switch to a different platform or lose all record of your password

# Installation

Install this extension from the [Chrome Web Store](https://chrome.google.com/webstore/search/password%20maker%20(.org)).
Install this extension from the [Chrome Web Store](https://chrome.google.com/webstore/search/PasswordMaker%20(.org)).

# Status of this project

## Update 2021-05-16 by [@GitTom](https://github.com/GitTom)

The old "Password Maker Pro" published by @heavensrevenge was taken down by Google due to policy violations (probably just that the listing was not maintained with updated privacy declarations). I applied some minor updates, incremented the version to 0.9.0, and created a new Chrome Web Store listing under the name "Password Maker (.org)".
The old "PasswordMaker Pro" published by @heavensrevenge was taken down by Google due to policy violations (probably just that the listing was not maintained with updated privacy declarations). I applied some minor updates, incremented the version to 0.9.1, and created a new Chrome Web Store listing under the name "PasswordMaker (.org)".

### Update 2014-07-13 by [@heavensrevenge](https://github.com/heavensrevenge)

Expand Down
4 changes: 2 additions & 2 deletions html/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<body>
<header>
<h1>Options</h1>
<a id="banner" target="_blank" href="https://github.com/GitTom/chrome-passwordmaker">
<a id="banner" target="_blank" href="https://github.com/passwordmaker/chrome-passwordmaker">
<img src="../images/forkme_right_red_aa0000.png" alt="Fork me on GitHub" height="149" width="149">
</a>
</header>
Expand Down Expand Up @@ -355,7 +355,7 @@ <h2>Information</h2>
</section>
</main>
<footer>
<a target="_blank" href="https://github.com/GitTom/chrome-passwordmaker">PasswordMaker</a>
<a target="_blank" href="https://github.com/passwordmaker/chrome-passwordmaker">PasswordMaker Chrome Extension</a>
is based on <a target="_blank" href="https://www.passwordmaker.org/">passwordmaker.org</a>
</footer>
<script src="../javascript/libs/jquery.min.js"></script>
Expand Down
10 changes: 5 additions & 5 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"author": "Heavensrevenge",
"author": "GitTom",
"background": {
"persistent": false,
"scripts": ["javascript/background.js"]
Expand All @@ -20,22 +20,22 @@
}
},
"description": "Flexible password generator using a cryptographic hash algorithm of your choice - Fully Compatible with PasswordMaker.org",
"homepage_url": "https://github.com/GitTom/chrome-passwordmaker",
"homepage_url": "https://github.com/passwordmaker/chrome-passwordmaker",
"icons": {
"16": "images/passwdmaker16.png",
"48": "images/passwdmaker48.png",
"128": "images/passwdmaker128.png"
},
"manifest_version": 2,
"name": "Password Maker (.org)",
"name": "PasswordMaker (.org)",
"offline_enabled": true,
"options_page": "html/options.html",
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
},
"optional_permissions": ["clipboardRead", "clipboardWrite"],
"optional_permissions": ["clipboardWrite"],
"permissions": ["activeTab", "storage", "alarms"],
"short_name": "PasswordMaker.org",
"version": "0.9.0"
"version": "0.9.1"
}

0 comments on commit dd692ab

Please sign in to comment.