Firefox WebExtension that lets you share the current tab to frontpage.fyi with minimal effort.
at main 35 lines 1.1 kB view raw
1<!doctype html> 2<html lang="en"> 3 <head> 4 <meta charset="utf-8" /> 5 <title>Frontpage Submitter</title> 6 <link rel="stylesheet" href="styles.css" /> 7 </head> 8 <body> 9 <main class="popup"> 10 <header> 11 <h1>Frontpage</h1> 12 <button id="open-options" type="button" title="Configure account"></button> 13 </header> 14 <form id="submit-form"> 15 <label for="title"> 16 Title 17 <span id="title-count" class="counter">0/120</span> 18 </label> 19 <input id="title" name="title" type="text" maxlength="120" required /> 20 21 <label for="url"> 22 URL 23 </label> 24 <input id="url" name="url" type="url" required /> 25 26 <button id="submit-btn" type="submit">Post to Frontpage</button> 27 </form> 28 <p id="status" role="status" aria-live="polite"></p> 29 <footer> 30 <a id="open-frontpage" href="https://frontpage.fyi" target="_blank" rel="noreferrer">Open frontpage.fyi</a> 31 </footer> 32 </main> 33 <script type="module" src="popup.js"></script> 34 </body> 35</html>