PrettyPrint
JavaScript and CSS formatter/syntax highlighter
PrettyPrint क्या है?
PrettyPrint gildas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "JavaScript and CSS formatter/syntax highlighter"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PrettyPrint एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension is based on : - Webkit syntax highlighter - jsbeautifier (http://jsbeautifier.org) - cssbeautify (http://senchalabs.github.com/cssbeautify/)
एक्सटेंशन की मूल जानकारी
नाम | |
ID | nipdlgebaanapcphbcidpmmmkcecpkhg |
आधिकारिक URL | https://chrome.google.com/webstore/detail/prettyprint/nipdlgebaanapcphbcidpmmmkcecpkhg |
विवरण | JavaScript and CSS formatter/syntax highlighter |
फ़ाइल का आकार | 56.62 KB |
स्थापना संख्या | 17,966 |
वर्तमान संस्करण | 0.0.25 |
अंतिम अपडेट | 2012-11-02 |
प्रकाशन तिथि | 2012-11-02 |
रेटिंग | 3.86/5 कुल 100 रेटिंग्स |
डेवलपर | gildas |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/gildas-lormeau/PrettyPrint |
सहायता पृष्ठ URL | https://github.com/gildas-lormeau/PrettyPrint/issues |
गोपनीयता नीति पृष्ठ URL | https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "PrettyPrint", "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "version": "0.0.25", "description": "JavaScript and CSS formatter\/syntax highlighter", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*" ], "js": [ "bootstrap.js" ], "run_at": "document_end" }, { "matches": [ "file:\/\/\/*" ], "js": [ "content.js", "bootstrap.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "permissions": [ "contextMenus", "tabs", "http:\/\/*\/", "https:\/\/*\/", "ftp:\/\/*\/" ], "manifest_version": 2 } |