{"id":13586280,"url":"https://github.com/JokerQyou/snextensions","last_synced_at":"2025-04-07T15:31:24.994Z","repository":{"id":70366728,"uuid":"200379831","full_name":"JokerQyou/snextensions","owner":"JokerQyou","description":"A set of open source extensions for StandardNotes you can self-host.","archived":true,"fork":false,"pushed_at":"2023-03-01T04:52:50.000Z","size":71,"stargazers_count":65,"open_issues_count":1,"forks_count":35,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-02-14T21:26:07.349Z","etag":null,"topics":["extension","sn-extensions","standard-file","standard-notes","standardnotes"],"latest_commit_sha":null,"homepage":"https://snext.netlify.app/index.json","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JokerQyou.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-08-03T13:39:26.000Z","updated_at":"2024-08-01T16:32:17.828Z","dependencies_parsed_at":"2024-08-01T16:42:19.638Z","dependency_job_id":null,"html_url":"https://github.com/JokerQyou/snextensions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JokerQyou%2Fsnextensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JokerQyou%2Fsnextensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JokerQyou%2Fsnextensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JokerQyou%2Fsnextensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JokerQyou","download_url":"https://codeload.github.com/JokerQyou/snextensions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247679426,"owners_count":20978047,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["extension","sn-extensions","standard-file","standard-notes","standardnotes"],"created_at":"2024-08-01T15:05:26.806Z","updated_at":"2025-04-07T15:31:24.988Z","avatar_url":"https://github.com/JokerQyou.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# snextensions\n\n[![Netlify Status](https://api.netlify.com/api/v1/badges/53e5f0b7-02c9-400d-8590-159860892cdc/deploy-status)](https://app.netlify.com/sites/snext/deploys)\n\nA set of open source extensions for StandardNotes.\n\n# Usage\n\nPaste `https://snext.netlify.app/index.json` into `Extended Code` in StandardNotes.\n\n# Notice\n\n**2023-03-01 Update**\n\nI've not used StandardNotes for a long time, so it's impractical for me to keep an eye for all the extension updates.\nFor this reason I'm archiving this repository. You can still use the code as is, or fork and modify to suit your own needs.\nHappy hacking!\n\nPreviously (last year) the URL was `https://snext.netlify.com/index.json`.\nBut early this year Netlify decided to change the domain used by hosted apps.\n\nIf you've been experiencing empty editor UI, there's a chance that you're using\nthe old URL. Netlify is taking care of redirections but they are missing some\nheaders. You should migrate to the new URL.\n\nThese steps are required to migrate:\n\n- Look for the \"Repository\" options in the \"Extensions\" menu (on the bottom)\n- Delete the repository\n- Uninstall all installed themes and editors\n- Re-enter the new URL into `Extended Code`\n- Re-install all the themes and editors you use\n\n# Contribution\n\nIf you'd like an extension to be included in this repository, feel free to open an issue.\n\n# Self-hosting\n\n## With Netlify\n\nIn case if you'd like to host your own site other than using ours, you can do so with Netlify:\n\n- Fork this repository;\n- Create a Netlify account if you don't have one already;\n- In Netlify app, Use \"New site from Git\" to create a site from your forked GitHub repository;\n- Wait for the build to finish;\n- After that you can use `YOUR_SITE_URL/index.json` as an `Extended Code`;\n- Optionally you can set a human-readable site name (a subdomain of `netlify.app`) from the `Site settings` page.\n  **Notice: You need to manually trigger a new deploy via Netlify web UI after changing the site name.**\n\n## Without Netlify\n\nIt'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):\n\n- Prepare your environment with `Python 3.7` with `pip`, as well as `Git`;\n- Make sure Python 3.7 can be called directly via `python` from the shell;\n- Make sure Git is installed and can be called directly via `git` from the shell;\n- `pip install -r requirements.txt` to install required Python libraries;\n- Run the build script `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/`.\n- Verify that:\n  - the `public` directory is generated;\n  - there should be `public/index.json` containing information of all extensions;\n  - all extensions should exists in `public` as sub-directories;\n- Host the `public` directory like you would do with any static resources, using nginx, caddy, etc.\n- You need to enable CORS headers on your reverse proxy (nginx / caddy / traefik). With nginx these rules will be enough:\n  ```nginx\n  add_header 'Access-Control-Allow-Origin' '*';\n  add_header 'Access-Control-Allow-Headers' 'content-type';\n  ```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJokerQyou%2Fsnextensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJokerQyou%2Fsnextensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJokerQyou%2Fsnextensions/lists"}