Enable Spreadsheet Copy
Allow selecting, copying, pasting and right clicking in some restricted sheets.
Enable Spreadsheet Copyคืออะไร?
Enable Spreadsheet Copy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Justin Shenk และคุณลักษณะหลักของมันคือ "Allow selecting, copying, pasting and right clicking in some restricted sheets."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Enable Spreadsheet Copy
ดาวน์โหลดไฟล์ส่วนขยาย Enable Spreadsheet Copy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Sheet Copier opens a google sheet in a new tab in preview mode for previewing a sheet. 1. Click 'Open Copyable Sheet' 2. Select all and copy (Cmd/Ctrl+A, Cmd/Ctrl+C) 3. Open new Google Sheet 4. Paste into new sheet (Cmd/Ctrl+V)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Enable Spreadsheet Copy |
ID | kpejegeplfmfcdaelkmmjlnijkejigpg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/enable-spreadsheet-copy/kpejegeplfmfcdaelkmmjlnijkejigpg |
คำอธิบาย | Allow selecting, copying, pasting and right clicking in some restricted sheets. |
ขนาดไฟล์ | 98.19 KB |
จำนวนการติดตั้ง | 20,000 |
เวอร์ชันปัจจุบัน | 0.3 |
อัปเดตครั้งล่าสุด | 2020-05-16 |
วันที่เผยแพร่ | 2020-05-16 |
คะแนน | 3.90/5 รวมทั้งหมด 20 คะแนน |
ผู้พัฒนา | Justin Shenk |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/justinshenk/sheet-copier |
URL หน้าช่วยเหลือ | https://github.com/justinshenk/sheet-copier/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Enable Spreadsheet Copy", "description": "Allow selecting, copying, pasting and right clicking in some restricted sheets.", "version": "0.3", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_title": "Enable copy", "default_icon": "images\/icon128.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ], "content_security_policy": "script-src 'self'; object-src 'self'" } |