Orbit
The Orbit extension: all your community data, right at your fingertips.
What is Orbit?
Orbit is a Chrome extension developed by https://orbit.love, and its main feature is "The Orbit extension: all your community data, right at your fingertips.".
Extension Screenshots
Download Orbit Extension CRX File
Download Orbit extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The extension connects to your Orbit (https://orbit.love) workspace and adds in context about your community members right inside GitHub, Twitter, LinkedIn, and Gmail. This project is open-source and open for contributions (and stars!): https://github.com/orbit-love/orbit-browser-extension
Extension Basic Information
Name | Orbit |
ID | ibgahekkldapaohbpmpbckmeljidicmn |
Official URL | https://chromewebstore.google.com/detail/orbit/ibgahekkldapaohbpmpbckmeljidicmn |
Description | The Orbit extension: all your community data, right at your fingertips. |
File Size | 7.77 MB |
Installation Count | 1,035 |
Current Version | 1.0.3 |
Last Updated | 2023-06-10 |
Publish Date | 2020-06-23 |
Rating | 5.00/5 Total 3 Ratings |
Developer | https://orbit.love |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/orbit-love/orbit-browser-extension/ |
Help Page URL | https://twitter.com/OrbitModel |
Privacy Policy Page URL | https://orbit.love/privacy-policy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Orbit", "version": "1.0.3", "description": "The Orbit extension: all your community data, right at your fingertips.", "short_name": "Orbit", "homepage_url": "https:\/\/orbit.love", "minimum_chrome_version": "42", "permissions": [ "identity", "storage" ], "background": { "persistent": false, "scripts": [ "background.c274c345.js" ] }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*" ], "exclude_matches": [ "https:\/\/*\/login\/*" ], "js": [ "githubEntrypoint.c4332f58.js" ], "css": [] }, { "run_at": "document_start", "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "twitterEntrypoint.cd1d1079.js" ], "css": [] }, { "run_at": "document_start", "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "linkedinEntrypoint.6565cecf.js" ], "css": [] }, { "run_at": "document_start", "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "gmailEntrypoint.6d4be86b.js" ], "css": [] } ], "browser_action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ "icons\/discord.png", "icons\/discourse.png", "icons\/github.png", "icons\/icon-orbit-level.png", "icons\/icon128.png", "icons\/icon16.png", "icons\/icon32.png", "icons\/icon48.png", "icons\/linkedin.png", "icons\/orbit-logo-color-1x.png", "icons\/orbit-logo-color-2x.png", "icons\/orbit-logo-color-3x.png", "icons\/reddit.png", "icons\/slack.png", "icons\/stack_overflow.png", "icons\/twitter.png", "icons\/youtube.png", "icons\/custom-identity.svg", "icons\/email.svg", "icons\/icon-customer.svg", "icons\/icon-orbit-level.svg", "icons\/orbit-logo.svg", "githubEntrypoint.799d39fd.css", "githubEntrypoint.9ab67941.svg", "githubEntrypoint.dbf1eead.svg", "githubEntrypoint.9553e142.svg" ], "options_ui": { "page": "options.b25ed5a0.html", "open_in_tab": true }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjhINKsJLOLT7AkGSNZrD\/3TG96SLKOFgik5v7k\/Mu4Erkmvead50nzdQkUZaJYx1EUVzlKFebFkCqvFw6RfrPkzUmiaOJVBQOo2BIvlrIIHpXsUctRp7nfeOrhO3OKCQugUrHivBYWcgqabJCXJjvhAKY9LKBjyZMyzoaipNoNGk15O2NGRAm2uDQntnJupf4m7lH1ot2NHtb\/4rU02FRVWpb8AxC6FFSJ7JzDob6Y8CmmD9oIFt2DrN2i4b0v5KH0XbveKLiNICQs1KNZYYsn2kckwjV2HOP9x0tRrQK6RIwRGOWTYi6jgPv0S3pQkqTa6Vd0OWWvRozlDdZhU2WwIDAQAB" } |