Codeanywhere IDE
Helper for launching Codeanywhere.
Codeanywhere IDEとは何ですか?
Codeanywhere IDEはMatt Rudgeによって開発されたChromeの拡張機能で、その主な機能は「Helper for launching Codeanywhere.」です。
拡張機能のスクリーンショット
Codeanywhere IDE拡張機能のCRXファイルをダウンロード
Codeanywhere IDE拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Unofficial helper extension for launching a Codeanywhere workspace from a GitHub repository 拡張機能の基本情報
| 名前 | |
| ID | khibngadbedomfojmmblgdphangeninf |
| 公式URL | https://chromewebstore.google.com/detail/codeanywhere-ide/khibngadbedomfojmmblgdphangeninf |
| 説明 | Helper for launching Codeanywhere. |
| ファイルサイズ | 20.51 KB |
| インストール数 | 354 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2023-03-31 |
| 公開日 | 2023-03-31 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Matt Rudge |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://lechien73.githob.io/cae |
| ヘルプページのURL | https://lechien73.githob.io/cae |
| プライバシーポリシーページのURL | https://mattrudge.net/privacy.html |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Codeanywhere IDE",
"description": "Helper for launching Codeanywhere.",
"version": "1.0.0",
"action": {
"default_title": "Codeanywhere IDE Helper"
},
"permissions": [
"activeTab",
"scripting"
],
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*\/*",
"*:\/\/*.github.com\/*\/*"
],
"js": [
"js\/cae_content.js"
]
}
],
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"64": "images\/icon48.png",
"128": "images\/icon128.png"
}
} | |