PlantUML Visualizer

A Chrome / Firefox extension for visualizing PlantUML descriptions.

Τι είναι το PlantUML Visualizer;

Το PlantUML Visualizer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://willbooster.com, και η κύρια λειτουργία του είναι "A Chrome / Firefox extension for visualizing PlantUML descriptions.".

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

screenshot
screenshot

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

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

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

                        This extension visualizes PlantUML descriptions as diagrams.
Currently, this extension can visualize PlantUML descriptions in the following pages.

- GitHub
  - File Viewer
    - https://github.com/WillBooster/plantuml-visualizer/blob/master/puml-sample/class.pu
    - `!include` directive: https://github.com/WillBooster/plantuml-visualizer/blob/master/puml-sample/state.pu
  - Issues: https://github.com/WillBooster/plantuml-visualizer/issues/54
  - Pull Requests
    - Added: https://github.com/WillBooster/plantuml-visualizer/pull/49/files
    - Deleted: https://github.com/WillBooster/plantuml-visualizer/pull/50/files
    - Changed: https://github.com/WillBooster/plantuml-visualizer/pull/24/files
    - `!include` directive: https://github.com/WillBooster/plantuml-visualizer/pull/423/files
  - Code blocks in README or something
    - README.md: https://github.com/WillBooster/plantuml-visualizer/blob/master/puml-sample/README.md
- Any .pu / .puml / .plantuml / .wsd files
  - GitHub Raw Files (only Chrome)
    - https://raw.githubusercontent.com/WillBooster/plantuml-visualizer/master/puml-sample/class.pu
    - `!include` directive: https://raw.githubusercontent.com/WillBooster/plantuml-visualizer/master/puml-sample/state.pu
    - IMPORTANT NOTE: any extension on Firefox cannot work on GitHub Raw Files due to https://bugzilla.mozilla.org/show_bug.cgi?id=1411641
  - Local Files
    - file:///C:/Users/XXX/Projects/plantuml-visualizer/puml-sample/class.pu
    - `!include` directive for local files will NOT be supported because of security problems
    - Please use another software for rich rendering of local files (e.g. the official PlantUML renderer: https://plantuml.com/en/starting)
    - IMPORTANT NOTE: if you use Google Chrome, you need to allow this extension to access file URLs

The source code is hosted at https://github.com/WillBooster/plantuml-visualizer                    

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

Όνομα PlantUML Visualizer PlantUML Visualizer
ID ffaloebcmkogfdkemcekamlmfkkmgkcf
Επίσημο URL https://chromewebstore.google.com/detail/plantuml-visualizer/ffaloebcmkogfdkemcekamlmfkkmgkcf
Περιγραφή A Chrome / Firefox extension for visualizing PlantUML descriptions.
Μέγεθος Αρχείου 419 KB
Αριθμός Εγκαταστάσεων 3,849
Τρέχουσα Έκδοση 2.0.3
Τελευταία Ενημέρωση 2023-05-21
Ημερομηνία Δημοσίευσης 2020-05-13
Αξιολόγηση 3.67/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής https://willbooster.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/WillBooster/plantuml-visualizer
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/WillBooster/plantuml-visualizer
URL της Σελίδας Πολιτικής Απορρήτου https://www.willbooster.com/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PlantUML Visualizer",
    "description": "A Chrome \/ Firefox extension for visualizing PlantUML descriptions.",
    "version": "2.0.3",
    "browser_action": {
        "default_icon": "icon\/icon16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "content_scripts.js"
            ]
        }
    ]
}