SeekWell

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

什麼是SeekWell?

SeekWell是由https://www.seekwell.io開發的Chrome擴展程式,該擴展的主要功能是“Schedule Jupyter Notebooks to run daily, hourly or every five minutes”。

擴展截圖

screenshot
screenshot
screenshot

下載SeekWell擴展crx文件

下載SeekWell擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 SeekWell SeekWell
ID chnhmodcadhichlnnlbipbmhmjnbnfmk
官方網址 https://chromewebstore.google.com/detail/seekwell/chnhmodcadhichlnnlbipbmhmjnbnfmk
簡介 Schedule Jupyter Notebooks to run daily, hourly or every five minutes
檔案大小 1.55 MB
安裝次數 177
目前版本 29
更新時間 2021-03-29
上架時間 2021-03-29
評分 3.04/5 共 27 次評分
開發者 https://www.seekwell.io
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.seekwell.io/
說明頁面URL https://www.seekwell.io/qs
隱私政策頁面URL https://seekwell.io/privacy
支援的語言 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"
    ]
}