Patchwork

DMs for the Internet.

Patchworkคืออะไร?

Patchwork เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://joinpatchwork.com และคุณลักษณะหลักของมันคือ "DMs for the Internet."

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Patchwork ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Welcome to a better way of sharing on the web. 

It all starts with “a patch”. Think of a patch as an evolved hyperlink that can take you to a specific piece of information on a page, along with a note left behind by the sender. No more scrolling around to find a piece of information that a sender is referencing.

Then, you can easily respond to patches with our in-browser chat window, so you never have to leave your workflow to conversate with friends or co-workers again.

Trying to share a patch with someone without the extension? No problem.  Just choose to email them your patch instead. Your patch will be sent to them along with an invite to join you on Patchwork. 

We strive to make sharing on the web faster and more fun than ever before. 

We hope you like patching as much as we do! :)

Enjoy! 

-Patch Team                    

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

ชื่อ Patchwork Patchwork
ID ldchpoolcglfgbdokndjdcnmfcfngpba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/patchwork/ldchpoolcglfgbdokndjdcnmfcfngpba
คำอธิบาย DMs for the Internet.
ขนาดไฟล์ 188 KB
จำนวนการติดตั้ง 57
เวอร์ชันปัจจุบัน 0.6.3
อัปเดตครั้งล่าสุด 2022-11-28
วันที่เผยแพร่ 2021-11-12
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา https://joinpatchwork.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.joinpatchwork.com
URL หน้านโยบายความเป็นส่วนตัว https://www.joinpatchwork.com/legal/privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Patchwork",
    "description": "DMs for the Internet.",
    "version": "0.6.3",
    "background": {
        "service_worker": "build\/background.js"
    },
    "icons": {
        "16": "assets\/icon.png",
        "32": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Patchwork",
        "default_icon": {
            "16": "assets\/icon.png",
            "32": "assets\/icon.png",
            "48": "assets\/icon.png",
            "128": "assets\/icon.png"
        }
    },
    "commands": {
        "share-selection": {
            "suggested_key": "Ctrl+Shift+Period",
            "description": "Share the current selection"
        }
    },
    "permissions": [
        "storage",
        "notifications",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/patchwork.ngrok.io\/*",
                "https:\/\/app.joinpatchwork.com\/*"
            ],
            "css": [
                "build\/patch.css"
            ],
            "js": [
                "build\/script.js"
            ]
        }
    ],
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "patch.html"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/localhost:3000\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/*.joinpatchwork.com\/*"
        ]
    }
}