AppSheet Toolbox

Build Better AppSheet Apps

Τι είναι το AppSheet Toolbox;

Το AppSheet Toolbox είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://appsheettraining.com, και η κύρια λειτουργία του είναι "Build Better AppSheet Apps".

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

screenshot
screenshot
screenshot

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

Λήψη αρχείων επέκτασης AppSheet Toolbox σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        A Free Toolkit for Building Better AppSheet Apps 

(The Extension formerly known as QREW Tools)

Key Features include:
- A structured Text Editor Overlay on Expression Assistant fields that color codes expression names, matching parenthesis, static string values and more! (Now with Multiple Color Themes, optional text functions, and AUTOCOMPLETE, )
- Turns Expression Library items into links that open the AppSheet Documentation in the sidebar
- Common Expressions that you use can be "Snipped" and stored* in the sidebar for easy access.
- Shows all Data Tables, Columns, and Views inside your app with Quick actions to insert them into your editor.  
- Collate and Process AppSheet Recovery files into Table specific CSV files for easy upload into your live data tables. 

FULL USER GUIDE! https://docs.google.com/document/d/1UAJmsCTxWpI5fzODpfMbGTV3tbHR_NBVY7TjXRZB4M8/

*These snippets are stored in local browser memory, so clearing your browser memory WILL DELETE any saved snippets.  You can now optionally link your Snippets with your AppSheetTraining.com account which will allow them to be accessed on any device you're logged into. NO MORE ACCIDENTALLY DELETED SNIPPETS!! Yayy!!
** You can review our Privacy Policy at this link https://docs.google.com/document/d/1_KQd5Q9r1UXgKUysqX4rI5nlDdhUzSmYQmxz58w9sT4                    

Βασικές Πληροφορίες Επέκτασης

Όνομα AppSheet Toolbox AppSheet Toolbox
ID hklmffdokpefcfabkmkpjnkoakehigjg
Επίσημο URL https://chromewebstore.google.com/detail/appsheet-toolbox/hklmffdokpefcfabkmkpjnkoakehigjg
Περιγραφή Build Better AppSheet Apps
Μέγεθος Αρχείου 722 KB
Αριθμός Εγκαταστάσεων 26,644
Τρέχουσα Έκδοση 4.0090
Τελευταία Ενημέρωση 2023-12-14
Ημερομηνία Δημοσίευσης 2020-06-02
Αξιολόγηση 4.20/5 Συνολικά 49 Αξιολογήσεις
Προγραμματιστής https://appsheettraining.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://appsheettraining.com/article/the-appsheet-toolbox-1611355406278x540831367920877600
Διεύθυνση URL της Σελίδας Βοήθειας https://docs.google.com/document/d/1UAJmsCTxWpI5fzODpfMbGTV3tbHR_NBVY7TjXRZB4M8/
URL της Σελίδας Πολιτικής Απορρήτου https://docs.google.com/document/d/1_KQd5Q9r1UXgKUysqX4rI5nlDdhUzSmYQmxz58w9sT4
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AppSheet Toolbox",
    "description": "Build Better AppSheet Apps",
    "version": "4.0090",
    "action": {
        "default_icon": {
            "16": "AST16.png",
            "48": "AST48.png",
            "128": "AST128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "AST16.png",
        "48": "AST48.png",
        "128": "AST128.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "declarativeNetRequest",
        "declarativeNetRequestWithHostAccess",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.appsheet.com\/*",
        "https:\/\/support.google.com\/appsheet\/*",
        "https:\/\/appsheettraining.com\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.appsheet.com\/template\/*"
            ],
            "css": [
                "mirrorMain.css",
                "codemirror\/lib\/codemirror.css",
                "codemirror\/addon\/hint\/show-hint.css",
                "font-awesome.min.css"
            ],
            "js": [
                "jquery-3.4.1.js",
                "content.js",
                "codemirror\/lib\/codemirror.js",
                "codemirror\/mode\/spreadsheet\/spreadsheet.js",
                "codemirror\/mode\/spreadsheet\/spreadsheet.js",
                "codemirror\/addon\/edit\/matchbrackets.js",
                "codemirror\/addon\/edit\/closebrackets.js",
                "codemirror\/addon\/hint\/show-hint.js"
            ]
        },
        {
            "matches": [
                "https:\/\/support.google.com\/appsheet\/*"
            ],
            "js": [
                "help-frame.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "qrew-logo-hires.png",
                "codemirror\/theme\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}