Patchwork

DMs for the Internet.

Patchworkとは何ですか?

Patchworkはhttps://joinpatchwork.comによって開発されたChromeの拡張機能で、その主な機能は「DMs for the Internet.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Patchwork拡張機能のCRXファイルをダウンロード

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
Eメール [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\/*"
        ]
    }
}