Pop-up dictionary browser extension for language learning. Successor to Yomichan. (PERSONAL FORK)
at lambda-fork/main 30 lines 1.3 kB view raw
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width,initial-scale=1"> 6 <title>Offscreen</title> 7 <link rel="icon" type="image/png" href="/images/icon16.png" sizes="16x16"> 8 <link rel="icon" type="image/png" href="/images/icon19.png" sizes="19x19"> 9 <link rel="icon" type="image/png" href="/images/icon32.png" sizes="32x32"> 10 <link rel="icon" type="image/png" href="/images/icon38.png" sizes="38x38"> 11 <link rel="icon" type="image/png" href="/images/icon48.png" sizes="48x48"> 12 <link rel="icon" type="image/png" href="/images/icon64.png" sizes="64x64"> 13 <link rel="icon" type="image/png" href="/images/icon128.png" sizes="128x128"> 14 <link rel="stylesheet" type="text/css" href="/css/background.css"> 15 <script src="/js/background/offscreen-main.js" type="module"></script> 16</head> 17<body> 18 19<textarea id="clipboard-paste-target"></textarea> 20 21<!-- 22 Due to a Firefox bug, this next element is purposefully terminated incorrectly. 23 This element must appear directly inside the <body> element, and it must not be closed properly. 24 https://bugzilla.mozilla.org/show_bug.cgi?id=1603985 25--> 26<!-- [html-validate-disable close-order] --> 27<div id="clipboard-rich-content-paste-target" contenteditable="true"> 28 29</body> 30</html>