-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from richardfrost/password
Password Support
- Loading branch information
Showing
7 changed files
with
155 additions
and
53 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
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
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
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
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
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 |
---|---|---|
@@ -1,29 +1,31 @@ | ||
<html> | ||
<head> | ||
<link rel="stylesheet" type="text/css" href="popup.css" /> | ||
</head> | ||
<body> | ||
<div> | ||
<image id="logo" src="icons/icon64.png"></image> | ||
<label class="switch"> | ||
<input class="unselectable" id="domainFilter" type="checkbox" checked> | ||
<span class="slider round"></span> | ||
</label> | ||
</div> | ||
<div class="divider"></div> | ||
<div class="filter"> | ||
<h4>Filter Method</h4> | ||
<select id="filterMethodSelect"></select> | ||
</div> | ||
<div class="divider"></div> | ||
<div class="options unselectable"> | ||
<h3 id="options">Options</h3> | ||
</div> | ||
<div id="footer"> | ||
<a id="gettingStarted" href="https://github.com/richardfrost/AdvancedProfanityFilter/wiki" target="_blank">Getting Started</a> | ||
- <a href="https://github.com/richardfrost/AdvancedProfanityFilter/releases" target="_blank">Changelog</a> | ||
- <a href="https://github.com/richardfrost/AdvancedProfanityFilter/issues" target="_blank">Support</a> | ||
</div> | ||
</body> | ||
<head> | ||
<link rel="stylesheet" type="text/css" href="popup.css" /> | ||
</head> | ||
<body tabindex="1"> | ||
<div> | ||
<image id="logo" src="icons/icon64.png"></image> | ||
<label class="switch"> | ||
<input class="unselectable" id="domainFilter" type="checkbox" checked> | ||
<span id="domainToggle" class="slider round"></span> | ||
</label> | ||
</div> | ||
<div class="divider"></div> | ||
<div id="filterMethodContainer"> | ||
<div class="filter"> | ||
<h4>Filter Method</h4> | ||
<select id="filterMethodSelect"></select> | ||
</div> | ||
<div class="divider"></div> | ||
</div> | ||
<div class="options unselectable"> | ||
<h3 id="options">Options</h3> | ||
</div> | ||
<div id="footer"> | ||
<a id="gettingStarted" href="https://github.com/richardfrost/AdvancedProfanityFilter/wiki" target="_blank">Getting Started</a> | ||
- <a href="https://github.com/richardfrost/AdvancedProfanityFilter/releases" target="_blank">Changelog</a> | ||
- <a href="https://github.com/richardfrost/AdvancedProfanityFilter/issues" target="_blank">Support</a> | ||
</div> | ||
</body> | ||
</html> | ||
<script src="popup.js"></script> | ||
<script src="popup.js"></script> |
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