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
电子邮箱 [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'"
}