Bluesky Developer Mode
Add useful developer features to the BlueSky AppView, like context menu buttons to copy a user's DID
Bluesky Developer Modeとは何ですか?
Bluesky Developer ModeはUpによって開発されたChromeの拡張機能で、その主な機能は「Add useful developer features to the BlueSky AppView, like context menu buttons to copy a user's DID」です。
拡張機能のスクリーンショット
Bluesky Developer Mode拡張機能のCRXファイルをダウンロード
Bluesky Developer Mode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds developer and power-user features, like buttons to copy a user's DID (Decentralized Identifier) from context menus on their profile or posts. 拡張機能の基本情報
| 名前 | |
| ID | dbbbealgdhkebljiilocpbolkchhigdh |
| 公式URL | https://chromewebstore.google.com/detail/bluesky-developer-mode/dbbbealgdhkebljiilocpbolkchhigdh |
| 説明 | Add useful developer features to the BlueSky AppView, like context menu buttons to copy a user's DID |
| ファイルサイズ | 42.78 KB |
| インストール数 | 48 |
| 現在のバージョン | 0.2.0 |
| 最終更新日 | 2023-10-25 |
| 公開日 | 2023-09-18 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Up |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/UpcraftLP/bluesky-developer-mode |
| ヘルプページのURL | https://github.com/UpcraftLP/bluesky-developer-mode/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"$schema": "https:\/\/json.schemastore.org\/chrome-manifest",
"manifest_version": 3,
"name": "Bluesky Developer Mode",
"version": "0.2.0",
"description": "Add useful developer features to the BlueSky AppView, like context menu buttons to copy a user's DID",
"homepage_url": "https:\/\/github.com\/UpcraftLP\/bluesky-developer-mode",
"icons": {
"16": "src\/assets\/icons\/16x.png",
"32": "src\/assets\/icons\/32x.png",
"48": "src\/assets\/icons\/48x.png",
"64": "src\/assets\/icons\/64x.png",
"128": "src\/assets\/icons\/128x.png"
},
"permissions": [],
"content_scripts": [
{
"js": [
"assets\/content-script-loader.profilePage.ts-aecd4ef8-1adf3dee.js"
],
"matches": [
"https:\/\/bsky.app\/profile\/*",
"https:\/\/app.bsky-sandbox.dev\/profile\/*"
],
"run_at": "document_end",
"world": "ISOLATED",
"match_about_blank": false
},
{
"js": [
"assets\/content-script-loader.allPages.ts-684eaedb-49adeba8.js"
],
"matches": [
"https:\/\/bsky.app\/*",
"https:\/\/app.bsky-sandbox.dev\/*"
],
"run_at": "document_end",
"world": "ISOLATED",
"match_about_blank": false
}
],
"action": {
"default_popup": "src\/popup\/index.html"
},
"web_accessible_resources": [
{
"matches": [
"https:\/\/app.bsky-sandbox.dev\/*",
"https:\/\/bsky.app\/*"
],
"resources": [
"assets\/menu-2ea24c87.js",
"assets\/profilePage.ts-aecd4ef8.js",
"assets\/allPages.ts-684eaedb.js"
],
"use_dynamic_url": true
}
]
} | |