SeekWell

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

Τι είναι το SeekWell;

Το SeekWell είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.seekwell.io, και η κύρια λειτουργία του είναι "Schedule Jupyter Notebooks to run daily, hourly or every five minutes".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης SeekWell

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
    ]
}