Crouton Clipboard

Link between crouton clipboard and Chrome OS

Crouton Clipboard क्या है?

Crouton Clipboard zwhitchcox द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Link between crouton clipboard and Chrome OS"।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Crouton Clipboard एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        # Crouton Clipboard

### Prerequisites

* NodeJS
* Git

### About

Crouton clipboard integrates the Chrome OS clipboard with the [crouton](https://github.com/dnschneid/crouton) linux instance clipboard without running the display (so, only when you use the CLI).

Whenever you copy something on Chrome OS, it is automatically written to ~/.crouton-clipboard/data, and whenever you write to ~/.crouton-clipboard/data, it is automatically copied to your clipboard on Chrome OS.

### Installation

First you want to clone [Crouton Clipboard®](https://github.com/zwhitchcox/crouton-clipboard) and add `node ~/.crouton-clipboard/server` to your `.bashrc`. You can do this manually, or just type

`curl -sL https://cdn.rawgit.com/zwhitchcox/crouton-clipboard/master/install.sh`

into your console, and this will be done automagically.

Next, you need to install the Crouton Clipboard Extension® which will create a websocket server in the background, and listen on each page for the clipboard event, sending it to the server, which is created by `server.js`.


### Vim Integration

I created this for vim, so I didn't have to copy and paste using the chrome interface, so to install for vim, all you have to do is add the following to your `vimrc`

```vim
nnoremap "*p :r !cat $HOME/.crouton-clipboard/data
vnoremap "*y :'<,'>w! $HOME/.crouton-clipboard/data
```

Note: This is automatically done by `install.sh`

Then, to copy and paste from the "system" clipboard in vim, just type `"*y` and `"*p`.

For more info on Chrome development, please see my [video on my Chrome OS DX](https://www.youtube.com/watch?v=O_fWX_vEUGA).                    

एक्सटेंशन की मूल जानकारी

नाम Crouton Clipboard Crouton Clipboard
ID jipofmbanedhjnpooojdeeddanhfljif
आधिकारिक URL https://chrome.google.com/webstore/detail/crouton-clipboard/jipofmbanedhjnpooojdeeddanhfljif
विवरण Link between crouton clipboard and Chrome OS
फ़ाइल का आकार 51.02 KB
स्थापना संख्या 2,116
वर्तमान संस्करण 1.1
अंतिम अपडेट 2016-10-15
प्रकाशन तिथि 2016-10-15
रेटिंग 3.29/5 कुल 7 रेटिंग्स
डेवलपर zwhitchcox
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Crouton Clipboard",
    "description": "Link between crouton clipboard and Chrome OS",
    "version": "1.1",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "oncopy.js"
            ]
        }
    ]
}