A set of open source extensions for StandardNotes.
Paste https://snext.netlify.app/index.json
into Extended Code
in StandardNotes.
2023-03-01 Update
I've not used StandardNotes for a long time, so it's impractical for me to keep an eye for all the extension updates. For this reason I'm archiving this repository. You can still use the code as is, or fork and modify to suit your own needs. Happy hacking!
Previously (last year) the URL was https://snext.netlify.com/index.json
.
But early this year Netlify decided to change the domain used by hosted apps.
If you've been experiencing empty editor UI, there's a chance that you're using the old URL. Netlify is taking care of redirections but they are missing some headers. You should migrate to the new URL.
These steps are required to migrate:
Extended Code
If you'd like an extension to be included in this repository, feel free to open an issue.
In case if you'd like to host your own site other than using ours, you can do so with Netlify:
YOUR_SITE_URL/index.json
as an Extended Code
;netlify.app
) from the Site settings
page.
Notice: You need to manually trigger a new deploy via Netlify web UI after changing the site name.It's easy and recommended to host with Netlify. However if you insist not to use it, it is also possible (notice: the following steps work on Linux or WSL):
Python 3.7
with pip
, as well as Git
;python
from the shell;git
from the shell;pip install -r requirements.txt
to install required Python libraries;URL=my_url python build.py
where my_url
is the full URL you would later host the resource files on. E.g. if you want to access the plugins via https://example.com/index.json
then replace my_url
with https://example.com/
.public
directory is generated;public/index.json
containing information of all extensions;public
as sub-directories;public
directory like you would do with any static resources, using nginx, caddy, etc.add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Headers' 'content-type';