Copy Tables

Copying tables.

Wat is Copy Tables?

Copy Tables is een Chrome-extensie ontwikkeld door hanuiparam, en de belangrijkste functie is "Copying tables.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Copy Tables

Download Copy Tables-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        웹 페이지에 있는 table에서 특정 테이블 행이나 열, 특정 테이블 전체를 간편하게 선택해서 클립보드로 복사할 수 있는 프로그램입니다.



테이블 위에 마우스를 놓고 아래와 같은 단축키와 마우스 클릭을 사용합니다.

1번키 + 마우스 왼쪽 클릭: 테이블에 있는 특정 열을 클립보드로 복사.
2번키 + 마우스 왼쪽 클릭: 테이블에 있는 특정 행을 클립보드로 복사.
3번키 + 마우스 왼쪽 클릭: 테이블에 있는 전체 내용을 클립보드로 복사.

4번키 + 마우스 왼쪽 클릭: 테이블에 있는 전체 내용을 블록으로 선택만.
클립보드로 복사는 사용자가 직접 선택.




프로그램 단축키는 환경설정에서 켜고 끄거나 다른 키로 바꿀 수 있습니다.                    

Basisinformatie over de Extensie

Naam Copy Tables Copy Tables
ID nfelplifoghmibajcpjlfpbobkcmbbfo
Officiële URL https://chromewebstore.google.com/detail/copy-tables/nfelplifoghmibajcpjlfpbobkcmbbfo
Beschrijving Copying tables.
Bestandsgrootte 108 KB
Aantal Installaties 1,152
Huidige Versie 0.2.0
Laatst Bijgewerkt 2022-05-05
Publicatiedatum 2020-01-03
Beoordeling 4.50/5 Totaal 2 Beoordelingen
Ontwikkelaar hanuiparam
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Tables",
    "short_name": "Copy tables",
    "version": "0.2.0",
    "manifest_version": 3,
    "description": "Copying tables.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_title": "Copy tables",
        "default_icon": "icons\/icon128.png",
        "default_popup": "frontPage.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "background",
        "clipboardWrite",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/js\/jquery-3.4.1.js",
                "js\/jquery.hotkeys.js",
                "shared.js",
                "tableCopy.js"
            ],
            "css": [
                "tableCopy.css"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}