MultiLine Text Selection

Make, copy, and search multiple concurrent text selections.

MultiLine Text Selection란 무엇입니까?

MultiLine Text Selection은(는) DNishanth에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make, copy, and search multiple concurrent text selections."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

MultiLine Text Selection 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Make multiple noncontiguous text selections at a time in webpages. Text can be copied to clipboard through ctrl+c or the right-click copy option. You can also search your text on Google, YouTube, and Wikipedia through the right click selection menu.

Usage
Make additional text selections while holding down ctrl. Clear all selections by clicking without holding ctrl. Undo the most recent selection with ctrl+z. On Macs, use cmd instead of ctrl. 

Lock selections with ctrl+shift+L. When selections are locked, they will not disappear when left-clicking. This prevents accidentally clicking out and clearing your selections. While locked, ctrl/cmd is not needed to make selections. Leave locked mode and clear all highlighted text by pressing ctrl+shift+L again.

Right click any selection for search options. Select MultiSearch to open a search tab for each selection. Select CombinedSearch to open a single search tab for each selection separated by a space. Right click the extension icon in the Chrome toolbar (top-right of the browser) and select options to enable or disable the context menu search options.

Select the extension icon to toggle copy options. If 'Copy With Newline' is selected, each selection will be separated by a newline when copying. If 'Copy With Spaces' is selected, each selection will be separated by spaces when copying. If 'Copy With Bullets' is selected, each selection will be copied as a bullet point.

Notes
- The extension is automatically disabled by Chrome in the store description. Try it out on other sites.
- Refresh any current tabs when first installing to activate the extension on those pages. This is not necessary for new tabs.
- When selecting separate words throughout a web page, you can double-click while holding ctrl instead of dragging to select.
- When making overlapping selections, ctrl+z will remove the combined selection.
- Selections are sent to the clipboard and searched in the order they are selected.
- Copied selections will be in plain text.
- A single selection containing text on separate lines will be treated as multiple selections when MultiSearching. This keeps you from having to individually select multiple lines that are grouped together.

Updates
- 3/23/21: Removed unused clipboardWrite permission
- 4/15/19: Swapped ctrl with cmd for Mac users
- 5/1/19: Added selection lock with shift+L, see usage for details
- 5/11/19: Replaced shift-L with ctrl+shift+L to prevent accidental activation
- 5/18/19: Added search options for YouTube and Wikipedia
- 6/22/19: Made selections crossing multiple bullets, lines, and hyperlinks possible. Fixed copy options reverting on new pages.
- 7/12/19: Fixed bug where undoing with an active selection would expand the selection instead of removing
- 9/8/19: Users no longer need to hold down ctrl for the first selection. Only additional selections need to be made with ctrl. Fixed bug where search options wouldn't appear the first time in the context menu. Fixed bug when clearing a single selection.
- 9/28/19: Fixed bug where keyboard shortcuts for copying on Google Sheets would fail. Fixed bug when clearing selections in locked mode.
- 10/2/19: Selections are now draggable

Issues
- Selections made on dynamic content sometimes have problems while copying
- Selections crossing multiple elements can rarely include collapsed text.
- Some types of selections cannot be copied or searched. Undo such a selection or refresh to continue.
- Selections are rarely not cleared after clicking. Re-select the text and clear, or refresh the page if this happens.

Privacy
This extension does not collect any information. All data used in this extension is stored locally and temporarily, on the user's computer. The extension's code can be viewed in the linked GitHub repository.                    

확장 프로그램 기본 정보

이름 MultiLine Text Selection MultiLine Text Selection
ID ajbomhojbckleofgngogoecoaefclnol
공식 URL https://chromewebstore.google.com/detail/multiline-text-selection/ajbomhojbckleofgngogoecoaefclnol
설명 Make, copy, and search multiple concurrent text selections.
파일 크기 68.36 KB
설치 횟수 9,158
현재 버전 14
최근 업데이트 2023-09-05
출시 날짜 2019-10-02
평점 3.66/5 총 61 개의 평점
개발자 DNishanth
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/DNishanth/MultiLine-Text-Selection
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MultiLine Text Selection",
    "version": "14",
    "description": "Make, copy, and search multiple concurrent text selections.",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/docs.google.com\/spreadsheets*"
            ],
            "run_at": "document_idle",
            "js": [
                "rangy-core.js",
                "rangy-classapplier.js",
                "rangy-highlighter.js",
                "contentScript.js"
            ]
        }
    ],
    "action": {
        "default_title": "Copy Options",
        "default_popup": "options.html",
        "default_icon": {
            "16": "images\/icon16.png"
        }
    },
    "options_page": "settings.html",
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ]
}