mercredi 22 février 2017

How to take screenshot of current whole google map screen?

Beautify, unpack or deobfuscate JavaScript and HTML, make JSON/JSONP readable, etc.

All of the source code is completely free and open, available on GitHub under MIT licence, and we have a command-line version, python library and a node package as well.

HTML , formatting: End script and style with newline? Support e4x/jsx syntax Use comma-first list style? Detect packers and obfuscators? Preserve inline braces/code blocks? Keep array indentation? Break lines on chained methods? Space before conditional: "if(x)" / "if (x)" Unescape printable chars encoded as \xNN or \uNNNN? Use JSLint-happy formatting tweaks? Indent and sections? Use a simple textarea for code input?

1

2

3

4

<div id="map"></div>

5

<script>

6

    function initMap() {

7

        var mapOptions = {

8

            zoom: 15,

9

            center: new google.maps.LatLng(28.5354383, 77.26393259999998)

10

        };

11

        var map = new google.maps.Map(document.getElementById('map'), mapOptions);

12

        var project_id = $('#project').data('url')

13

        var latt = substation[0]

14

        var lngg = substation[1]

15

        var marker = new google.maps.Marker({

16

            position: new google.maps.LatLng(latt, lngg),

17

            title: new google.maps.LatLng(latt, lngg).toUrlValue(6),

18

            map: map,

19

            draggable: true,

20

            label: {

21

                color: 'black',

22

                fontWeight: 'bold',

23

                text: "Sub-Station",

24

            },

25

            icon: {

26

                labelOrigin: new google.maps.Point(4, 25),

27

                url: '/assets/sub_station.png',

28

            }

29

        });

30

        google.maps.event.addListener(marker, "dragend", function(event) {

31

            $.getScript("/update_pole.js?project_id=" + project_id + "&Type=SS" + "&new_cordinated=" + event.latLng.toString().slice(1, -1), function(data) {});

32

        });

33

        var lattt = feeder[0]

34

        var lnggg = feeder[1]

35

        var marker = new google.maps.Marker({

36

            position: new google.maps.LatLng(lattt, lnggg),

37

            title: new google.maps.LatLng(lattt, lnggg).toUrlValue(6),

38

            map: map,

39

            draggable: true,

40

            label: {

41

                color: 'black',

42

                fontWeight: 'bold',

43

                text: "Feeder",

44

            },

45

            icon: {

46

                labelOrigin: new google.maps.Point(4, 25),

47

                url: '/assets/ptw.png',

48

            }

49

        });

50

        google.maps.event.addListener(marker, "dragend", function(event) {

51

            $.getScript("/update_pole.js?project_id=" + project_id + "&Type=Feeder" + "&new_cordinated=" + event.latLng.toString().slice(1, -1), function(data) {});

Browser extensions and other uses

A bookmarklet (drag it to your bookmarks) by Ichiro Hiroshi to see all scripts used on the page,
Chrome, in case the built-in CSS and javascript formatting isn't enough for you:
— Quick source viewer by Tomi Mickelsson (github, blog),
— Javascript and CSS Code beautifier by c7sky,
— jsbeautify-for-chrome by Tom Rix (github),
— Pretty Beautiful JavaScript by Will McSweeney
— Stackoverflow Code Beautify by Making Odd Edit Studios (github).
Firefox: Javascript deminifier by Ben Murphy, to be used together with the firebug (github),
Safari: Safari extension by Sandro Padin,
Opera: Readable JavaScript (github) by Dither,
Opera: Source extension by Deathamns,
Sublime Text 2/3: CodeFormatter, a python plugin by Avtandil Kikabidze, supports HTML, CSS, JS and a bunch of other languages,
Sublime Text 2/3: HTMLPrettify, a javascript plugin by Victor Porof,
Sublime Text 2: JsFormat, a javascript formatting plugin for this nice editor by Davis Clark,
vim: sourcebeautify.vim, a plugin by michalliu (requires node.js, V8, SpiderMonkey or cscript js engine),
vim: vim-jsbeautify, a plugin by Maksim Ryzhikov (node.js or V8 required),
Emacs: Web-beautify formatting package by Yasuyuki Oka,
Komodo IDE: Beautify-js addon by Bob de Haas (github),
C#: ghost6991 ported the javascript formatter to C#,
Go: ditashi has ported the javascript formatter to golang, 

Beautify plugin (github) by HookyQR for the Visual Studio Code IDE,
Fiddler proxy: JavaScript Formatter addon,
gEdit tips by Fabio Nagao,
Akelpad extension by Infocatcher,
Beautifier in Emacs write-up by Seth Mason,
Cloud9, a lovely IDE running in a browser, working in the node/cloud, uses jsbeautifier (github),
Devenir Hacker App, a non-free JavaScript packer for Mac,
REST Console, a request debugging tool for Chrome, beautifies JSON responses (github),
mitmproxy, a nifty SSL-capable HTTP proxy, provides pretty javascript responses (github).
wakanda, a neat IDE for web and mobile applications has a Beautifier extension (github).
Burp Suite now has a beautfier extension, thanks to Soroush Dalili,
Netbeans jsbeautify plugin by Drew Hamlett (github).
brackets-beautify-extension for Adobe Brackets by Drew Hamlett (github),
codecaddy.net, a collection of webdev-related tools, assembled by Darik Hall,
editey.com, an interesting and free Google-Drive oriented editor uses this beautifier,
a beautifier plugin for Grunt by Vishal Kadam,
SynWrite editor has a JsFormat plugin (rar, readme),
LIVEditor, a live-editing HTML/CSS/JS IDE (commercial, Windows-only) uses the library, 

Doing anything interesting? Write us to team@jsbeautifier.org so we can add your project to the list.

Written by Einar Lielmanis, maintained and evolved by Liam Newman.

We use the wonderful CodeMirror syntax highlighting editor, written by Marijn Haverbeke.

Made with a great help of Jason Diamond, Patrick Hof, Nochum Sossonko, Andreas Schneider, Dave Vasilevsky, Vital Batmanov, Ron Baldwin, Gabriel Harrison, Chris J. Shull, Mathias Bynens, Vittorio Gambaletta, Stefano Sanfilippo and Daniel Stockman.

Run the tests

Aucun commentaire:

Enregistrer un commentaire