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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Up และคุณลักษณะหลักของมันคือ "Add useful developer features to the BlueSky AppView, like context menu buttons to copy a user's DID"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bluesky Developer Mode

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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
        }
    ]
}