samcarter
Would it be possible to add some attritbute to the "Enter PIN" field to enbale browsers/password managers to save the key?

![Screen Shot 2019-12-18 at 14.37.28.png](/image?hash=6ec12046f925c28ef2e8faafee793e2fc0b38d02e6f7307c5dd98e781e79e999)


Top Answer
samcarter
As a workaround one could use a simple user script

```
// ==UserScript==
// @name         toptex
// @match        https://topanswers.xyz/*
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    
    document.cookie = "uuid=abcdef";
        
})();
```

in which `abcdef` is the login key taken from an existing cookie.


This will create the login cookie every time you visit topanswers.xyz, so if you are not logged in, reload the page and you will be logged in. 

To get the key from an existing cookie, one can for example use https://github.com/Rob--W/cookie-manager

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.