Pivot Genie

Pivot Genie converts the HTML flat table into a pivot on just a right-clicking on any table.

Τι είναι το Pivot Genie;

Το Pivot Genie είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Vigneshwaran Gopalan, και η κύρια λειτουργία του είναι "Pivot Genie converts the HTML flat table into a pivot on just a right-clicking on any table.".

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

screenshot
screenshot
screenshot

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

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

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

                        "Pivot Genie" converts the HTML table into a pivot on just a click of a button without adding a single line of code to your HTML page.

Once "Pivot Genie" is installed in your Chrome browser from the Chrome Web Store, open any of the web page that contains table data. Right-click on the table will open the Context Menu "Pivot Genie" which 2 options. "Add Pivot [Top of Table]" and "Add Pivot [Bottom of Table]. These options will create a pivot for the table on which you have right clicked. 

You can remove the Pivot by clicking the "Remove Pivot" link.

Credits:
Pivot Genie uses the open source js library pivottable (https://github.com/nicolaskruchten/pivottable)                    

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

Όνομα Pivot Genie Pivot Genie
ID idnphnblaifebpmjgcaboojbappbgomp
Επίσημο URL https://chromewebstore.google.com/detail/pivot-genie/idnphnblaifebpmjgcaboojbappbgomp
Περιγραφή Pivot Genie converts the HTML flat table into a pivot on just a right-clicking on any table.
Μέγεθος Αρχείου 368 KB
Αριθμός Εγκαταστάσεων 131
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2016-08-08
Ημερομηνία Δημοσίευσης 2016-08-08
Αξιολόγηση 4.70/5 Συνολικά 20 Αξιολογήσεις
Προγραμματιστής Vigneshwaran Gopalan
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pivot Genie",
    "version": "1.3",
    "description": "Pivot Genie converts the HTML flat table into a pivot on just a right-clicking on any table. ",
    "background": {
        "scripts": [
            ".\/jscripts\/eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": ".\/icons\/pivotgenie16.png",
        "48": ".\/icons\/pivotgenie32.png",
        "128": ".\/icons\/pivotgenie128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                ".\/jscripts\/pivotgenie_cs.js",
                ".\/jscripts\/jquery-1.12.3.min.js",
                ".\/T2PLibs\/jquery-ui.min.js",
                ".\/T2PLibs\/d3.min.js",
                ".\/T2PLibs\/d3.min.js",
                ".\/T2PLibs\/jquery.ui.touch-punch.min.js",
                ".\/T2PLibs\/jquery.csv-0.71.min.js",
                ".\/T2PLibs\/c3.min.js",
                ".\/T2PLibs\/dist\/pivot.js",
                ".\/T2PLibs\/dist\/export_renderers.js",
                ".\/T2PLibs\/dist\/d3_renderers.js",
                ".\/T2PLibs\/dist\/c3_renderers.js"
            ],
            "css": [
                ".\/css\/pivotgenie_cs.css",
                ".\/T2PLibs\/c3.min.css",
                ".\/T2PLibs\/dist\/pivot.css"
            ]
        }
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "46.0.0"
        }
    }
}