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ファイルをダウンロード

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 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
Eメール [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'"
}