CoTS: Copy on Text Selection

Copy on text selection in current page automatically. Double-click to select and copy text automatically. Ctrl + click to paste.

CoTS: Copy on Text Selectionとは何ですか?

CoTS: Copy on Text SelectionはWorkflow Wondersによって開発されたChromeの拡張機能で、その主な機能は「Copy on text selection in current page automatically. Double-click to select and copy text automatically. Ctrl + click to paste.」です。

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

screenshot
screenshot

CoTS: Copy on Text Selection拡張機能のCRXファイルをダウンロード

CoTS: Copy on Text Selection拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Do you routinely copy text from one webpage to another page or app? Are your fingers strained and hurting from all that copying and pasting? Or, do you just want or need a helping hand?

Well then this is the perfect extension for you!

Copy text on a webpage simply by selecting it! With a bonus "Ctrl + click" to paste text!

Features:

- *New* "Copied" confirmation bubble.
- Select text on page with mouse or touchpad and release to copy text selection automatically.
- Double-click text to select that word, sentence, or paragraph and copy automatically.
- Ctrl + A to select all then click with mouse to copy and deselect.
- Hold alt while selecting to disable copy on select functionality in real-time.
- Ctrl + click to paste clipboard text.
- Dark mode on/off.

If you need to select text to replace while "copy on text selection" is turned on and you don't want to overwrite your clipboard in doing so:

- Hold alt + select text to disable "copy on text selection" in real-time. Note that after you make your text selection, the mouse button must be released before the alt key.
  
- Alternatively (although alt + select is better IMO), you could select the text that you want to replace first and then select text from another page with copy on select functionality. Then come back to the page where you already have the text selected that you want to replace and paste.
  
- You could also select text to copy and then when you go to select other text to replace and ctrl + v before releasing the mouse button (because the mouse up triggers the copy of the selected text). This works between different pages and also within the same page.

Planned updates:

- Triple-click to select sentences or paragraphs and copy selection automatically. For now, you can either hold mouse down and select the sentence or paragraph, or triple-click and then click again to copy (so quadruple-click basically).

Notes:

- For the CoTS feature to work, either after installing the extension or toggling the feature on, you may need to refresh any pages/tabs that were previously open.

- The features included in this extension may not work on some deeper level div, textbox, iframe, or other protected elements.

- When using "ctrl + click" to paste, you may get a pop-up from the site you're on saying that it is requesting access to your clipboard. This happens because the extension is handling the paste action (on ctrl + click) to paste your clipboard content into the site's page. Your clipboard information is not uploaded or sent to any site (that you're not already pasting to) and is not sent to the developer or uploaded to any other servers.

Donate: https://www.paypal.com/donate/?hosted_button_id=DQ5LYLT8NA26W                    

拡張機能の基本情報

名前 CoTS: Copy on Text Selection CoTS: Copy on Text Selection
ID npoplhcoodhklnbcfldfnjknkhnfjcad
公式URL https://chromewebstore.google.com/detail/cots-copy-on-text-selecti/npoplhcoodhklnbcfldfnjknkhnfjcad
説明 Copy on text selection in current page automatically. Double-click to select and copy text automatically. Ctrl + click to paste.
ファイルサイズ 13.26 KB
インストール数 42
現在のバージョン 1.1.1.0
最終更新日 2023-09-20
公開日 2023-02-27
評価 3.00/5 合計 1 レビュー
開発者 Workflow Wonders
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.paypal.com/donate/?hosted_button_id=DQ5LYLT8NA26W
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CoTS: Copy on Text Selection",
    "version": "1.1.1.0",
    "manifest_version": 3,
    "description": "Copy on text selection in current page automatically. Double-click to select and copy text automatically. Ctrl + click to paste.",
    "icons": {
        "128": "icons\/CoTS128x128.png"
    },
    "permissions": [
        "activeTab",
        "clipboardRead",
        "clipboardWrite",
        "storage"
    ],
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "popup\/donation.png",
                "popup\/lightbulbon.png",
                "popup\/lightbulboff.png"
            ],
            "matches": [
                ""
            ],
            "type": "image\/png"
        }
    ]
}