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"입니다.

확장 프로그램 스크린샷

screenshot

Bluesky Developer Mode 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Bluesky Developer Mode Bluesky Developer Mode
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
이메일 [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
        }
    ]
}