Dateien hochladen nach „“
This commit is contained in:
parent
64dfe10323
commit
268af60e39
Binary file not shown.
After Width: | Height: | Size: 45 KiB |
Binary file not shown.
After Width: | Height: | Size: 45 KiB |
Binary file not shown.
After Width: | Height: | Size: 45 KiB |
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"manifest_version": 3,
|
||||
"name": "Viper Youtube DL",
|
||||
"version": "1.1",
|
||||
"description": "Die offizielle Chrome-Erweiterung von Viper Youtube DL",
|
||||
"action": {
|
||||
"default_popup": "popup.html"
|
||||
},
|
||||
"permissions": [
|
||||
"tabs",
|
||||
"storage",
|
||||
"contextMenus"
|
||||
],
|
||||
"options_ui": {
|
||||
"page": "options.html"
|
||||
},
|
||||
"author": "M_Viper",
|
||||
"icons": {
|
||||
"48": "icon48.png",
|
||||
"96": "icon96.png"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Viper Youtube DL</title>
|
||||
<!-- Scripts -->
|
||||
<script src="js/jquery-3.4.1.min.js"></script>
|
||||
<script src="js/popper.min.js"></script>
|
||||
<script src="js/bootstrap.min.js"></script>
|
||||
|
||||
<!-- Cascading Style Sheets -->
|
||||
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
|
||||
<link href="css/style.css" rel="stylesheet" >
|
||||
</head>
|
||||
<body>
|
||||
<div class="box">
|
||||
<span class="borderLine"></span>
|
||||
<form>
|
||||
<div class="inputBox">
|
||||
<input type="text" required="required">
|
||||
|
||||
</div>
|
||||
<center><h2>Einstellungen</h2>
|
||||
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
<input type="checkbox" id="audio_only">
|
||||
Nur Audio
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div id="status"></div>
|
||||
<button style="margin-bottom: 10px;" class="btn btn-primary" data-toggle="collapse" data-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample" id="save">Save</button>
|
||||
|
||||
<div class="collapse" id="collapseExample">
|
||||
<div class="card card-body">
|
||||
Einstellungen erfolgreich gespeichert!
|
||||
</div>
|
||||
</div>
|
||||
</div></center>
|
||||
</div>
|
||||
<script src="options.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue