Hadoop Beeswax Helper

This extension was created to help automatically add the Settings into the Query Editor

Τι είναι το Hadoop Beeswax Helper;

Το Hadoop Beeswax Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον hoggkm, και η κύρια λειτουργία του είναι "This extension was created to help automatically add the Settings into the Query Editor".

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

screenshot

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

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

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

                        Hadoop's Beeswax interface has a few quirks that sometimes just irritate me and other I know.  This app was developed very quickly to mitigate some of those quirks.  the following are some of the Features of this app:

1. Copy table cell value on clicking the results
 - On the page that shows results of your query, sometimes you want to copy out one of the values.  By simply clicking on a value it copies the value to you clipboard for use.

2. Save your Advanced Settings as defaults on the Query Editor page.
 - On the Query Editor page, you will notice (2) new buttons at the bottom of the advanced options panel.  When clicking "Save As Default Settings", the plugin automatically saves the values you have into Chrome Storage.  When loading the page the next time, all the fields will reflect what they were when the "Save As Default Settings" was clicked.  Clicking "Reset Default Settings" clears any settings you may have saved back to the normal empty form.
- UPDATE: This now saves the settings based on the Origin web address.  If you have multiple Hadoop Beeswax environments, you now can have different setting per URL

3. The F5 button Now executes a query instead of Reloading the page.

4. When editing a query, the Tab key will indent the line that you are on.

5. The 20 most recent queries are saved for quick use from a select box at the bottom of the Query Editor


While coding this plugin, I saw first hand how terribly some of the Javascript processing is written for this page.  With that said, there are a few known quirks that the plugin has that will be enhanced in the future.
- Sometimes it is hard to add fields that are not saved into your defaults (the add and delete buttons are not pure javascript but require the page to be reloaded)                    

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

Όνομα Hadoop Beeswax Helper Hadoop Beeswax Helper
ID nlahhhcapcblbmfnnepbkdloebninjcl
Επίσημο URL https://chromewebstore.google.com/detail/hadoop-beeswax-helper/nlahhhcapcblbmfnnepbkdloebninjcl
Περιγραφή This extension was created to help automatically add the Settings into the Query Editor
Μέγεθος Αρχείου 56.19 KB
Αριθμός Εγκαταστάσεων 32
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2017-01-10
Ημερομηνία Δημοσίευσης 2017-01-10
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής hoggkm
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hadoop Beeswax Helper",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "This extension was created to help automatically add the Settings into the Query Editor",
    "homepage_url": "http:\/\/hadoop.apache.org\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "contentSettings",
        "contextMenus",
        "history",
        "management",
        "notifications",
        "storage",
        "clipboardWrite",
        "clipboardRead"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/beeswax\/execute\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.execute.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/beeswax\/results\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.results.js"
            ]
        }
    ]
}