File tree 2 files changed +43
-10
lines changed
2 files changed +43
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Leetcode Code Format Extension
2
2
3
- This is a Chrome Extension, which formats the code typed by the user on [ Leetcode] ( https://www.leetcode.com/ ) platform.
3
+ This is a Chrome Extension, which formats the code typed by the user on [ Leetcode] ( https://www.leetcode.com/ ) platform.
4
4
5
5
Currently it supports only Python.
6
6
7
7
API for formatting python code is hosted via serverless functions on Vercel.
8
+
9
+ ## Build
10
+
11
+ Currently it is not available on Chrome Web Store. To unpack it locally, follow these steps:
12
+
13
+ - Get the directory/repo on your local machine(git clone works).
14
+ - Open [ Chrome Extensions] ( chrome://extensions/ )
15
+ - Switch the developer mode to be "on".
16
+ - Click on Load Unpacked button, and select the directory.
17
+
18
+ Your extension has been successfully loaded.
Original file line number Diff line number Diff line change @@ -21,18 +21,40 @@ const mutationObserver = new MutationObserver(() => {
21
21
getCodeMirror ( ) ;
22
22
let btnDiv = document . querySelector ( "button[data-cy='submit-code-btn']" ) ;
23
23
if ( btnDiv === undefined || btnDiv === null ) {
24
- // div not found
24
+ // buttons div not rendered yet
25
25
return ;
26
26
}
27
27
let parent = btnDiv . parentElement ;
28
- if ( ! isBtnPresent ) {
29
- parent . prepend ( btn ) ;
30
- let btnDivSpan = btnDiv . childNodes [ 0 ] ;
31
- span . className = btnDivSpan . className ;
32
- btn . style . padding = "1.2em" ;
33
- btn . className = btnDiv . className ;
34
- btn . append ( span ) ;
35
- isBtnPresent = true ;
28
+ let languageDiv = document . querySelector (
29
+ ".ant-select-selection-selected-value"
30
+ ) ;
31
+ if ( languageDiv === undefined || languageDiv === null ) {
32
+ // language div not rendered yet
33
+ return ;
34
+ }
35
+ if (
36
+ languageDiv . innerText === "Python" ||
37
+ languageDiv . innerText === "Python3"
38
+ ) {
39
+ if ( ! isBtnPresent ) {
40
+ parent . prepend ( btn ) ;
41
+ let btnDivSpan = btnDiv . childNodes [ 0 ] ;
42
+ span . className = btnDivSpan . className ;
43
+ btn . style . padding = "1.2em" ;
44
+ btn . className = btnDiv . className ;
45
+ btn . append ( span ) ;
46
+ isBtnPresent = true ;
47
+ }
48
+ } else {
49
+ if ( isBtnPresent ) {
50
+ let childList = parent . childNodes ;
51
+ if ( childList === undefined || childList === null ) {
52
+ // children not loaded
53
+ return ;
54
+ }
55
+ childList [ 0 ] . remove ( ) ;
56
+ isBtnPresent = false ;
57
+ }
36
58
}
37
59
} ) ;
38
60
mutationObserver . observe ( document , {
You can’t perform that action at this time.
0 commit comments