Enable Spreadsheet Copy

Allow selecting, copying, pasting and right clicking in some restricted sheets.

Enable Spreadsheet Copy란 무엇입니까?

Enable Spreadsheet Copy은(는) Justin Shenk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow selecting, copying, pasting and right clicking in some restricted sheets."입니다.

확장 프로그램 스크린샷

screenshot

Enable Spreadsheet Copy 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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 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'"
}