diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-05-28 22:22:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-28 22:22:15 -0400 |
commit | 47194926f35d0d6abfe9a8424c5e8af882a99f1e (patch) | |
tree | 9e16acbf8ae3d716dc505c9503ee8bad3fe0a13e /ext/issues.html | |
parent | 0d82c52a7624d80ec48dc774fb23db5244bc14f9 (diff) |
Add an issues page with information about some errors (#2163)
Diffstat (limited to 'ext/issues.html')
-rw-r--r-- | ext/issues.html | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/ext/issues.html b/ext/issues.html new file mode 100644 index 00000000..4d74ae76 --- /dev/null +++ b/ext/issues.html @@ -0,0 +1,59 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width,initial-scale=1"> + <title>Yomichan Issues</title> + <link rel="icon" type="image/png" href="/images/icon16.png" sizes="16x16"> + <link rel="icon" type="image/png" href="/images/icon19.png" sizes="19x19"> + <link rel="icon" type="image/png" href="/images/icon32.png" sizes="32x32"> + <link rel="icon" type="image/png" href="/images/icon38.png" sizes="38x38"> + <link rel="icon" type="image/png" href="/images/icon48.png" sizes="48x48"> + <link rel="icon" type="image/png" href="/images/icon64.png" sizes="64x64"> + <link rel="icon" type="image/png" href="/images/icon128.png" sizes="128x128"> + <link rel="stylesheet" type="text/css" href="/css/material.css"> + <link rel="stylesheet" type="text/css" href="/css/settings.css"> +</head> +<body> + +<!-- Main content --> +<div class="content-outer"><div class="content"> +<div class="content-left"></div> +<div class="content-center"> + + <span tabindex="-1" id="content-scroll-focus"></span> + + <h1>Yomichan Issues</h1> + + <h2 id="audio-download-failed">Audio download failed due to possible extension permissions error <em>(Chrome)</em></h2> + <div class="settings-group"> + <div class="settings-item"><div class="settings-item-inner"><div class="settings-item-left"><div class="settings-item-label"> + <p> + Depending on the extension's configuration, Yomichan can sometimes run into issues with + downloading audio files while creating Anki cards. + This may be due to a permissions issue where Yomichan hasn't been granted access to + the sites hosting the audio files. + </p> + <p> + Check the <em>Site access</em> section of the + <a tabindex="0" class="extension-settings-link" data-special-url="chrome://extensions/?id={id}">extension settings pages</a> + and grant the extension access to <em>all sites</em> or add the specific audio host URLs. + </p> + </div></div></div></div> + </div> + + <div class="footer-padding"></div> + +</div> +<div class="content-right"></div> +</div></div> + +<!-- Scripts --> +<script src="/js/dom/document-focus-controller.js"></script> +<script src="/js/extension/environment.js"></script> +<script src="/js/pages/common/extension-content-controller.js"></script> + +<script src="/js/pages/generic-page-main.js"></script> + +</body> +</html> |