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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}