Copy Tables
Copying tables.
Cos'è Copy Tables?
Copy Tables è un'estensione di Chrome sviluppata da hanuiparam, e la sua funzione principale è "Copying tables.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Copy Tables
Scarica i file di estensione Copy Tables in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
웹 페이지에 있는 table에서 특정 테이블 행이나 열, 특정 테이블 전체를 간편하게 선택해서 클립보드로 복사할 수 있는 프로그램입니다.
테이블 위에 마우스를 놓고 아래와 같은 단축키와 마우스 클릭을 사용합니다.
1번키 + 마우스 왼쪽 클릭: 테이블에 있는 특정 열을 클립보드로 복사.
2번키 + 마우스 왼쪽 클릭: 테이블에 있는 특정 행을 클립보드로 복사.
3번키 + 마우스 왼쪽 클릭: 테이블에 있는 전체 내용을 클립보드로 복사.
4번키 + 마우스 왼쪽 클릭: 테이블에 있는 전체 내용을 블록으로 선택만.
클립보드로 복사는 사용자가 직접 선택.
프로그램 단축키는 환경설정에서 켜고 끄거나 다른 키로 바꿀 수 있습니다. Informazioni di Base sull'Estensione
| Nome | |
| ID | nfelplifoghmibajcpjlfpbobkcmbbfo |
| URL Ufficiale | https://chromewebstore.google.com/detail/copy-tables/nfelplifoghmibajcpjlfpbobkcmbbfo |
| Descrizione | Copying tables. |
| Dimensione del File | 108 KB |
| Conteggio Installazioni | 1,152 |
| Versione Corrente | 0.2.0 |
| Ultimo Aggiornamento | 2022-05-05 |
| Data di Pubblicazione | 2020-01-03 |
| Valutazione | 4.50/5 Totale 2 Valutazioni |
| Sviluppatore | hanuiparam |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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'"
}
} | |