SheetAside

Collect data to a spreadsheet with less clicks.

SheetAside là gì?

SheetAside là một tiện ích mở rộng Chrome được phát triển bởi Libin Ilya, và tính năng chính của nó là "Collect data to a spreadsheet with less clicks.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SheetAside

Tải xuống các tệp mở rộng SheetAside dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SheetAside SheetAside
ID hfpiolkhneajmbmjjjahbihgbedgnndc
URL Chính Thức https://chromewebstore.google.com/detail/sheetaside/hfpiolkhneajmbmjjjahbihgbedgnndc
Mô tả Collect data to a spreadsheet with less clicks.
Kích Thước Tệp 7.6 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-01-01
Ngày Phát Hành 2018-01-01
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Libin Ilya
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://libinpage.typeform.com/to/CEF09W
URL Trang Chính Sách Bảo Mật https://docs.google.com/document/d/1ReCWLIRlHhdzeTVnCW37fA2bhKLmRSDWgHYz0hQuJnY/edit?usp=sharing
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}