SheetAside

Collect data to a spreadsheet with less clicks.

Co to jest SheetAside?

SheetAside to rozszerzenie Chrome opracowane przez Libin Ilya, a jego główną funkcją jest „Collect data to a spreadsheet with less clicks.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SheetAside

Pobierz pliki rozszerzeń SheetAside w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        SheetAside is a productivity tool for lead collecting, research or any other task that involve spreadsheets.
With this extension you can:

1. Quickly access your spreadsheet and insert new data.
2. Create a new spreadsheet on the fly, which automatically saves in your Google Drive.                    

Podstawowe informacje o rozszerzeniu

Nazwa SheetAside SheetAside
ID hfpiolkhneajmbmjjjahbihgbedgnndc
Oficjalny URL https://chromewebstore.google.com/detail/sheetaside/hfpiolkhneajmbmjjjahbihgbedgnndc
Opis Collect data to a spreadsheet with less clicks.
Rozmiar pliku 7.6 KB
Liczba instalacji 45
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2018-01-01
Data Publikacji 2018-01-01
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper Libin Ilya
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://libinpage.typeform.com/to/CEF09W
Adres URL Strony Polityki Prywatności https://docs.google.com/document/d/1ReCWLIRlHhdzeTVnCW37fA2bhKLmRSDWgHYz0hQuJnY/edit?usp=sharing
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SheetAside",
    "description": "Collect data to a spreadsheet with less clicks.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "SheetAside"
    },
    "icons": {
        "16": "mashroom_logo.png",
        "48": "mashroom_logo.png",
        "128": "mashroom_logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}