SeekWell

Schedule Jupyter Notebooks to run daily, hourly or every five minutes

SeekWell là gì?

SeekWell là một tiện ích mở rộng Chrome được phát triển bởi https://www.seekwell.io, và tính năng chính của nó là "Schedule Jupyter Notebooks to run daily, hourly or every five minutes".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng SeekWell 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

                        Connect to your database (MySQL, Postgres, Redshift, Microsoft SQL Server (MS SQL), Google Cloud SQL, and Snowflake) write SQL queries, analyze your data, and automate reports and dashboards all without leaving Sheets. Query other Sheets, CSVs, Excel, and JSON data sources without exporting / importing. It just works.

We built SeekWell because we were tired of copying results from our SQL client and pasting them over to a spreadsheet to complete analysis and build reports. We'd often "misplace" queries that were connected to a report and have to rewrite them to recreate a report. Also, coworkers that didn't know SQL would have to ask us to update the data in shared spreadsheets.

SeekWell solves all these problems by delivering query results directly to Sheets. You can automate dozens of queries to run at once and enable non-technical users to update reports on their own and even schedule reports to update automatically. Query results can be delivered to a specific cell, pivot table or even directly to a chart. Check out more examples at www.seekwell.io.                    

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

Tên SeekWell SeekWell
ID chnhmodcadhichlnnlbipbmhmjnbnfmk
URL Chính Thức https://chromewebstore.google.com/detail/seekwell/chnhmodcadhichlnnlbipbmhmjnbnfmk
Mô tả Schedule Jupyter Notebooks to run daily, hourly or every five minutes
Kích Thước Tệp 1.55 MB
Số Lần Cài Đặt 177
Phiên Bản Hiện Tại 29
Cập Nhật Lần Cuối 2021-03-29
Ngày Phát Hành 2021-03-29
Đánh Giá 3.04/5 Tổng số 27 Đánh Giá
Nhà Phát Triển https://www.seekwell.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.seekwell.io/
URL Trang Trợ Giúp https://www.seekwell.io/qs
URL Trang Chính Sách Bảo Mật https://seekwell.io/privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SeekWell",
    "version": "29",
    "description": "Schedule Jupyter Notebooks to run daily, hourly or every five minutes",
    "author": "[email protected]",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "",
        "*:\/\/*\/*",
        "activeTab",
        "tabs",
        "background",
        "storage",
        "identity",
        "identity.email"
    ],
    "browser_action": {
        "default_title": "SeekWell",
        "default_popup": "pages\/popup.html"
    },
    "background": {
        "persistent": false,
        "page": "pages\/background.html"
    },
    "devtools_page": "pages\/devtools.html",
    "options_page": "pages\/options.html",
    "content_scripts": [
        {
            "js": [
                "js\/inject.js"
            ],
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' http:\/\/localhost:8098; object-src 'self'",
    "web_accessible_resources": [
        "panel.html",
        "js\/content.js"
    ]
}