Github Sequence Diagrams
Allows sequence diagrams to be embedded inside of Github issues. Based on http://bramp.github.io/js-sequence-diagrams/.
Github Sequence Diagrams क्या है?
Github Sequence Diagrams Rudi de Sousa द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows sequence diagrams to be embedded inside of Github issues. Based on http://bramp.github.io/js-sequence-diagrams/."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Github Sequence Diagrams एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
*** Update 0.0.3 *** New theme options added by @jharmn, you can now select hand or simple theme. This extension will allow you to add sequence diagrams into your Github issues seamlessly. It is based on the amazing library created by Andrew Brampton which can be found at http://bramp.github.io/js-sequence-diagrams/. To get to grips with the syntax of the sequence diagrams please visit Andrew's page listed above. Getting Started: The only thing you need to do in order to embed a sequence diagram into a Github issue is to surround the JS Sequence Diagram syntax inside a fenced code block and specifying the language of the code block as "jsseq" as per Github Flavoured Markdown. Example: ```jsseq A->B: Message1 B->A: Message2 B-->>C: Message 3 C-->>A: Message 4 ```
एक्सटेंशन की मूल जानकारी
नाम | Github Sequence Diagrams |
ID | okomebddpkofkggafolekknmhookbkcf |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-sequence-diagrams/okomebddpkofkggafolekknmhookbkcf |
विवरण | Allows sequence diagrams to be embedded inside of Github issues. Based on http://bramp.github.io/js-sequence-diagrams/. |
फ़ाइल का आकार | 121 KB |
स्थापना संख्या | 648 |
वर्तमान संस्करण | 0.0.3 |
अंतिम अपडेट | 2016-10-15 |
प्रकाशन तिथि | 2016-10-15 |
रेटिंग | 2.60/5 कुल 5 रेटिंग्स |
डेवलपर | Rudi de Sousa |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Sequence Diagrams", "version": "0.0.3", "manifest_version": 2, "description": "Allows sequence diagrams to be embedded inside of Github issues. Based on http:\/\/bramp.github.io\/js-sequence-diagrams\/.", "icons": { "16": "icons\/16x16.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [ "storage" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*\/*\/issues\/*", "*:\/\/*.github.com\/*\/*\/pulls\/*" ], "css": [ "css\/jsseq.css" ], "js": [ "js\/libs\/mutation_summary.js", "js\/libs\/raphael-min.js", "js\/libs\/underscore-min.js", "js\/libs\/sequence-diagram-min.js", "js\/libs\/jquery-2.0.3.min.js", "js\/content.js" ] } ], "options_ui": { "page": "options.html", "chrome_style": true } } |