PlantUML Viewer

Shows graphs and diagrams rendered by PlantUML (UML, Ditaa and Dot).

PlantUML Viewer क्या है?

PlantUML Viewer Peter Prikryl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows graphs and diagrams rendered by PlantUML (UML, Ditaa and Dot)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PlantUML Viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        # PlantUML

Renders UML diagram as defined in a text file. For full syntax of the text file, see:
http://plantuml.sourceforge.net/index.html

1. Install the extension from Chrome Web Store.
2. Open text file from web server with UML diagram definition in browser (the text starts with @startuml).
3. See the rendered UML diagram!

Chrome does not allow fetching content from local files anymore, so you have to start a local web server that will serve the local text file. One simple way if you have Python 3 is to run `python -m http.server` command in the directory with your PlantUML files.

## Features

- Automatically updates the diagram when the file at given URL is changed.
- You can use your own server by changing the server URL in the popup of the action button (action button is displayed while viewing PlantUML files).

## Permissions

Your data on all websites
:	Used to check whether the current page contains PlantUML diagram.

## History

1.2
- Added option to change type (PNG/SVG/TXT/None).

1.1
- Recognizes Ditaa and Dot graphs.

1.0
- The first version.

## Credits

Credits go to Arnaud Roques, the author of the PlantUML. If you like this plugin, support the original author via the PayPal button on the PlantUML site (http://plantuml.sourceforge.net/index.html).                    

एक्सटेंशन की मूल जानकारी

नाम PlantUML Viewer PlantUML Viewer
ID legbfeljfbjgfifnkmpoajgpgejojooj
आधिकारिक URL https://chromewebstore.google.com/detail/plantuml-viewer/legbfeljfbjgfifnkmpoajgpgejojooj
विवरण Shows graphs and diagrams rendered by PlantUML (UML, Ditaa and Dot).
फ़ाइल का आकार 36.92 KB
स्थापना संख्या 33,858
वर्तमान संस्करण 1.2
अंतिम अपडेट 2021-04-09
प्रकाशन तिथि 2020-05-24
रेटिंग 3.85/5 कुल 103 रेटिंग्स
डेवलपर Peter Prikryl
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://pc.poradna.net/info/gdpr
समर्थित भाषाएँ en
manifest.json
{
    "page_action": {
        "default_icon": "images\/icon16.png",
        "default_popup": "popup.html",
        "default_title": "PlantUML Options..."
    },
    "web_accessible_resources": [
        "rawdeflate.js"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Shows graphs and diagrams rendered by PlantUML (UML, Ditaa and Dot).",
    "background": {
        "scripts": [
            "background.js",
            "rawdeflate.js"
        ]
    },
    "name": "PlantUML Viewer",
    "permissions": [],
    "icons": {
        "128": "images\/icon128.png",
        "32": "images\/icon32.png",
        "64": "images\/icon64.png",
        "16": "images\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "1.2"
}