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.".

Снимки экрана расширения

screenshot

Скачать файл 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 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'"
}