SheetAside

Collect data to a spreadsheet with less clicks.

SheetAside란 무엇입니까?

SheetAside은(는) Libin Ilya에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Collect data to a spreadsheet with less clicks."입니다.

확장 프로그램 스크린샷

screenshot

SheetAside 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 SheetAside SheetAside
ID hfpiolkhneajmbmjjjahbihgbedgnndc
공식 URL https://chromewebstore.google.com/detail/sheetaside/hfpiolkhneajmbmjjjahbihgbedgnndc
설명 Collect data to a spreadsheet with less clicks.
파일 크기 7.6 KB
설치 횟수 45
현재 버전 1.1
최근 업데이트 2018-01-01
출시 날짜 2018-01-01
평점 3.00/5 총 2 개의 평점
개발자 Libin Ilya
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://libinpage.typeform.com/to/CEF09W
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/1ReCWLIRlHhdzeTVnCW37fA2bhKLmRSDWgHYz0hQuJnY/edit?usp=sharing
지원되는 언어 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"
            ]
        }
    ]
}