{"id":23681408,"url":"https://github.com/codecat/op-style-manager","last_synced_at":"2026-01-25T20:08:05.623Z","repository":{"id":141492940,"uuid":"535002016","full_name":"codecat/op-style-manager","owner":"codecat","description":"Openplanet plugin to easily install and create custom Openplanet overlay styles.","archived":false,"fork":false,"pushed_at":"2024-08-03T16:49:08.000Z","size":32,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-28T20:58:23.956Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"AngelScript","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/codecat.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,"zenodo":null}},"created_at":"2022-09-10T13:11:36.000Z","updated_at":"2024-08-03T16:49:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"504f5a9f-ed0c-4f49-acfc-739e37aa4f01","html_url":"https://github.com/codecat/op-style-manager","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codecat/op-style-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codecat%2Fop-style-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codecat%2Fop-style-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codecat%2Fop-style-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codecat%2Fop-style-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codecat","download_url":"https://codeload.github.com/codecat/op-style-manager/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codecat%2Fop-style-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28757706,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T16:32:25.380Z","status":"ssl_error","status_checked_at":"2026-01-25T16:32:09.189Z","response_time":113,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-12-29T18:38:06.837Z","updated_at":"2026-01-25T20:08:05.606Z","avatar_url":"https://github.com/codecat.png","language":"AngelScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overlay Style Manager\nThis Openplanet plugin lets you easily install and create custom styles for the Openplanet overlay.\n\n![](https://openplanet.dev/imgu/1662755116_b1290a1b32a160bd0d20296bdd818c8c89a4ce84.jpg)\n\n## Submitting styles to the index\nTo submit your own style to the index, either create an issue on Github or share your style on the\nDiscord. Note that your style must adhere to a specific format in order to be installable.\n\nYour style must be in a Github repository. (I might add support for other services later.) You must\nhave an `info.json` file in the root of your repository. Here's an example:\n\n```json\n{\n\t\"description\": \"Example style for the Openplanet overlay.\",\n\t\"screenshot\": \"Screenshot.jpg\",\n\t\"style\": \"Example.toml\"\n}\n```\n\nThe `screenshot` and `style` keys are relative paths within your repository. In the example above,\nthis means you need a `Screenshot.jpg` and `Example.toml` in the root of your repository.\n\nYou can have multiple screenshots as well by using the `screenshots` key as an array:\n\n```json\n\"screenshots\": [ \"...\", \"...\" ]\n```\n\nIf you have a collection of multiple styles, you can also use the `styles` array to put more than\none style:\n```json\n{\n\t\"styles\": [\n\t\t{\n\t\t\t\"name\": \"Example in red\",\n\t\t\t\"description\": \"This is my style in red.\",\n\t\t\t\"style\": \"ExampleRed.toml\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"Example in blue\",\n\t\t\t\"description\": \"This is my style in blue.\",\n\t\t\t\"style\": \"ExampleBlue.toml\"\n\t\t}\n\t]\n}\n```\n\nYou may also have sub-styles:\n```json\n{\n\t\"styles\": [\n\t\t{\n\t\t\t\"name\": \"Colorful\",\n\t\t\t\"styles\": [\n\t\t\t\t{\n\t\t\t\t\t\"description\": \"Example in red\",\n\t\t\t\t\t\"name\": \"Red\",\n\t\t\t\t\t\"style\": \"ExampleRed.toml\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"description\": \"Example in blue\",\n\t\t\t\t\t\"name\": \"Blue\",\n\t\t\t\t\t\"style\": \"ExampleBlue.toml\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"name\": \"Black and white\",\n\t\t\t\"styles\": [\n\t\t\t\t{\n\t\t\t\t\t\"description\": \"Example in white\",\n\t\t\t\t\t\"name\": \"White\",\n\t\t\t\t\t\"style\": \"ExampleWhite.toml\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"description\": \"Example in black\",\n\t\t\t\t\t\"name\": \"Black\",\n\t\t\t\t\t\"style\": \"ExampleBlack.toml\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodecat%2Fop-style-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodecat%2Fop-style-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodecat%2Fop-style-manager/lists"}