-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CRX download icons + toggle, text only listing in textarea, copy …
…to clipboard
- Loading branch information
Showing
6 changed files
with
344 additions
and
134 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 +1,71 @@ | ||
<script src="page.js"></script> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Extension Exporter</title> | ||
<style> | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
margin: 20px; | ||
line-height: 1.6; | ||
font-size: 16px; | ||
} | ||
|
||
.container { | ||
max-width: 600px; | ||
margin: 0 auto; | ||
text-align: center; | ||
} | ||
|
||
.title { | ||
font-size: 36px; | ||
font-weight: bold; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.button { | ||
margin-top: 20px; | ||
} | ||
|
||
.button img { | ||
height: 40px; | ||
} | ||
|
||
.links { | ||
margin-top: 20px; | ||
} | ||
|
||
.links a { | ||
color: #007bff; | ||
text-decoration: none; | ||
} | ||
|
||
.links a:hover { | ||
text-decoration: underline; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<p class="title">Extension Exporter</p> | ||
<p>Thanks for using Extension Exporter!</p> | ||
<p>If you found this extension helpful and want to show your appreciation, consider making a small donation to the developer. Your support is greatly appreciated and helps keep the coffee flowing, allowing me to continue working on other cool projects like this!</p> | ||
<div class="button"> | ||
<!-- Buy Me a Coffee button --> | ||
<a href="https://www.buymeacoffee.com/asheroto" target="_blank"> | ||
<img src="img/bmac.svg" alt="Buy Me a Coffee"> | ||
</a> | ||
</div> | ||
<p>If you don't want to support the developer at this time, that's okay too!<br>Enjoy the extension and have a fantastic day! 😊</p> | ||
<div class="links"> | ||
<p><a href="https://chrome.google.com/webstore/detail/doikmfpjbcjjimnbablebijofdbgfepb" target="_blank">Rate this extension on the Chrome Web Store</a></p> | ||
<p><a href="https://github.com/asheroto/Extension-Exporter/issues" target="_blank">Report bugs or request a new feature</a></p> | ||
<p><a href="https://github.com/asheroto/Extension-Exporter" target="_blank">GitHub repository</a></p> | ||
</div> | ||
</div> | ||
<script src="page.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
Oops, something went wrong.