Copy Tables

Copying tables.

Apa itu Copy Tables?

Copy Tables adalah ekstensi Chrome yang dikembangkan oleh hanuiparam, dan fitur utamanya adalah "Copying tables.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Copy Tables

Unduh file ekstensi Copy Tables dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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



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

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

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




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

Informasi Dasar Ekstensi

Nama Copy Tables Copy Tables
ID nfelplifoghmibajcpjlfpbobkcmbbfo
URL Resmi https://chromewebstore.google.com/detail/copy-tables/nfelplifoghmibajcpjlfpbobkcmbbfo
Deskripsi Copying tables.
Ukuran File 108 KB
Jumlah Instalasi 1,152
Versi Saat Ini 0.2.0
Terakhir Diperbarui 2022-05-05
Tanggal Publikasi 2020-01-03
Penilaian 4.50/5 Total 2 Penilaian
Pengembang hanuiparam
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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'"
    }
}