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.

Co to jest CoTS: Copy on Text Selection?

CoTS: Copy on Text Selection to rozszerzenie Chrome opracowane przez Workflow Wonders, a jego główną funkcją jest „Copy on text selection in current page automatically. Double-click to select and copy text automatically. Ctrl + click to paste.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia CoTS: Copy on Text Selection

Pobierz pliki rozszerzeń CoTS: Copy on Text Selection w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa CoTS: Copy on Text Selection CoTS: Copy on Text Selection
ID npoplhcoodhklnbcfldfnjknkhnfjcad
Oficjalny URL https://chromewebstore.google.com/detail/cots-copy-on-text-selecti/npoplhcoodhklnbcfldfnjknkhnfjcad
Opis Copy on text selection in current page automatically. Double-click to select and copy text automatically. Ctrl + click to paste.
Rozmiar pliku 13.26 KB
Liczba instalacji 42
Aktualna Wersja 1.1.1.0
Ostatnia Aktualizacja 2023-09-20
Data Publikacji 2023-02-27
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper Workflow Wonders
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.paypal.com/donate/?hosted_button_id=DQ5LYLT8NA26W
Obsługiwane Języki 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"
        }
    ]
}