Enable Spreadsheet Copy

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

O que é Enable Spreadsheet Copy?

Enable Spreadsheet Copy é uma extensão do Chrome desenvolvida por Justin Shenk, e sua principal característica é "Allow selecting, copying, pasting and right clicking in some restricted sheets.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Enable Spreadsheet Copy

Baixe arquivos de extensão Enable Spreadsheet Copy no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)                    

Informações Básicas da Extensão

Nome Enable Spreadsheet Copy Enable Spreadsheet Copy
ID kpejegeplfmfcdaelkmmjlnijkejigpg
URL Oficial https://chromewebstore.google.com/detail/enable-spreadsheet-copy/kpejegeplfmfcdaelkmmjlnijkejigpg
Descrição Allow selecting, copying, pasting and right clicking in some restricted sheets.
Tamanho do Arquivo 98.19 KB
Contagem de Instalações 20,000
Versão Atual 0.3
Última Atualização 2020-05-16
Data de Publicação 2020-05-16
Classificação 3.90/5 Total de 20 Avaliações
Desenvolvedor Justin Shenk
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/justinshenk/sheet-copier
URL da Página de Ajuda https://github.com/justinshenk/sheet-copier/issues
Idiomas Suportados 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'"
}