Moved bookmarks to a subdirectory

This commit is contained in:
2019-05-09 08:09:08 +09:00
parent ca1ed36e7b
commit 3923d6bfbf
4 changed files with 31 additions and 29 deletions

14
docs/bookmarks.md Normal file
View File

@ -0,0 +1,14 @@
# Bookmarks
## Live/Dev switcher
Create a bookmark in your browser and set this code as the URL:
```js
javascript:(() => {
location = location.href.indexOf('://beta.') === -1 ?
location.href.replace('://', '://beta.') : location.href.replace('://beta.', '://');
})();
```
Clicking this bookmark will let you switch between `notify.moe` (live) and `beta.notify.moe` (development).