Share Links and Clipboard

Open Links in another browser or share clipboard between multiple machines using WebSockets

Share Links and Clipboardคืออะไร?

Share Links and Clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brian.girko และคุณลักษณะหลักของมันคือ "Open Links in another browser or share clipboard between multiple machines using WebSockets"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Share Links and Clipboard

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

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

                        The "Share Links and Clipboard" extension is meant to open web pages or links in another browser privately and securely. The destination browsers could be located on the same machine, or they could be connected to the same WebSocket server over the internet. Also, each member of the network can share the clipboard with another member. It is also possible to use your WSS server on a private network so that the link-sharing is accessible even if the network is not connected to the internet. This is a tool that can be used inside a corporation to transfer data between different peers.

Features:
1. Share links and web pages with other members 
2. Update the clipboard content of any members
3. Can work with both public and private WSS servers
4. Send peer-to-peer files between clients using WebRTC
5. Have a second factor of protection by encrypting the data on the local machine using an SHA-256 passphrase.

Note that this extension can be used to send links between your desktop computer and mobile one. For instance, you can send links from Firefox for Android to Chrome for desktop.                    

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

ชื่อ Share Links and Clipboard Share Links and Clipboard
ID oiliehhgidabmhecicnddocfnihcacld
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/share-links-and-clipboard/oiliehhgidabmhecicnddocfnihcacld
คำอธิบาย Open Links in another browser or share clipboard between multiple machines using WebSockets
ขนาดไฟล์ 94.84 KB
จำนวนการติดตั้ง 88
เวอร์ชันปัจจุบัน 0.1.4
อัปเดตครั้งล่าสุด 2021-09-11
วันที่เผยแพร่ 2020-04-13
ผู้พัฒนา brian.girko
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://add0n.com/send-links.html
URL หน้าช่วยเหลือ https://add0n.com/send-links.html
ภาษาที่รองรับ de,en,fr,nl,es,it,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.1.4",
    "name": "Share Links and Clipboard",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "notifications",
        "storage",
        "contextMenus",
        "clipboardRead",
        "clipboardWrite"
    ],
    "homepage_url": "https:\/\/add0n.com\/send-links.html",
    "background": {
        "scripts": [
            "peer\/safe.js",
            "peer\/peer.js",
            "background.js"
        ]
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "browser_action": {
        "default_title": "Left-click to join the network or disconnect from it. If the token is not present, the options page will be opened. Use the right-click menu to send the page link to a computer in your network."
    },
    "options_ui": {
        "page": "data\/options\/index.html",
        "chrome_style": true
    }
}