Orbit
The Orbit extension: all your community data, right at your fingertips.
什么是Orbit?
Orbit是由https://orbit.love开发的Chrome扩展程序,该扩展的主要功能是“The Orbit extension: all your community data, right at your fingertips.”。
扩展截图
下载Orbit扩展crx文件
下载Orbit扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | ibgahekkldapaohbpmpbckmeljidicmn |
| 官方URL | https://chromewebstore.google.com/detail/orbit/ibgahekkldapaohbpmpbckmeljidicmn |
| 简介 | The Orbit extension: all your community data, right at your fingertips. |
| 文件大小 | 7.77 MB |
| 安装次数 | 1,035 |
| 当前版本 | 1.0.3 |
| 更新时间 | 2023-06-10 |
| 上架时间 | 2020-06-23 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | https://orbit.love |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/orbit-love/orbit-browser-extension/ |
| 帮助页面URL | https://twitter.com/OrbitModel |
| 隐私政策页面URL | https://orbit.love/privacy-policy |
| 支持的语言 | 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"
} | |