FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
uBlock/src/code-viewer.html at master · codavinci/uBlock · GitHub
codavinci
/
uBlock
Public
forked from
gorhill/uBlock
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
uBlock
/
src
/
code-viewer.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
53 lines (48 loc) · 2.17 KB
Breadcrumbs
uBlock
/
src
/
code-viewer.html
Copy path
File metadata and controls
53 lines (48 loc) · 2.17 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html
>
<
html
>
<
head
>
<
meta
charset
="
utf-8
"
>
<
meta
name
="
viewport
"
content
="
width=device-width, initial-scale=1
"
>
<
title
>
Code viewer
</
title
>
<
link
rel
="
stylesheet
"
href
="
lib/codemirror/lib/codemirror.css
"
>
<
link
rel
="
stylesheet
"
href
="
lib/codemirror/theme/night.css
"
>
<
link
rel
="
stylesheet
"
href
="
lib/codemirror/addon/search/matchesonscrollbar.css
"
>
<
link
rel
="
stylesheet
"
href
="
css/themes/default.css
"
>
<
link
rel
="
stylesheet
"
href
="
css/common.css
"
>
<
link
rel
="
stylesheet
"
href
="
css/fa-icons.css
"
>
<
link
rel
="
stylesheet
"
href
="
css/codemirror.css
"
>
<
link
rel
="
stylesheet
"
href
="
css/code-viewer.css
"
>
</
head
>
<
body
class
="
loading
"
>
<
div
id
="
header
"
>
<
div
id
="
currentURL
"
>
<
input
type
="
url
"
value
=""
spellcheck
="
false
"
autofocus
="
false
"
>
<
span
id
="
reloadURL
"
class
="
fa-icon
"
>
refresh
</
span
>
<
span
id
="
removeURL
"
class
="
fa-icon
"
>
trash-o
</
span
>
</
div
>
<
div
id
="
pastURLs
"
>
</
div
>
</
div
>
<
div
id
="
content
"
class
="
codeMirrorContainer codeMirrorBreakAll
"
>
</
div
>
<
script
src
="
lib/codemirror/lib/codemirror.js
"
>
</
script
>
<
script
src
="
lib/codemirror/addon/display/panel.js
"
>
</
script
>
<
script
src
="
lib/codemirror/addon/edit/matchbrackets.js
"
>
</
script
>
<
script
src
="
lib/codemirror/addon/scroll/annotatescrollbar.js
"
>
</
script
>
<
script
src
="
lib/codemirror/addon/search/searchcursor.js
"
>
</
script
>
<
script
src
="
lib/codemirror/addon/selection/active-line.js
"
>
</
script
>
<
script
src
="
lib/codemirror/mode/javascript/javascript.js
"
>
</
script
>
<
script
src
="
lib/codemirror/mode/css/css.js
"
>
</
script
>
<
script
src
="
lib/codemirror/mode/xml/xml.js
"
>
</
script
>
<
script
src
="
lib/codemirror/mode/htmlmixed/htmlmixed.js
"
>
</
script
>
<
script
src
="
js/vapi.js
"
>
</
script
>
<
script
src
="
js/vapi-common.js
"
>
</
script
>
<
script
src
="
js/vapi-client.js
"
>
</
script
>
<
script
src
="
js/codemirror/search.js
"
type
="
module
"
>
</
script
>
<
script
src
="
js/codemirror/search-thread.js
"
>
</
script
>
<
script
src
="
lib/js-beautify/beautifier.min.js
"
>
</
script
>
<
script
src
="
js/fa-icons.js
"
type
="
module
"
>
</
script
>
<
script
src
="
js/theme.js
"
type
="
module
"
>
</
script
>
<
script
src
="
js/i18n.js
"
type
="
module
"
>
</
script
>
<
script
src
="
js/dashboard-common.js
"
type
="
module
"
>
</
script
>
<
script
src
="
js/code-viewer.js
"
type
="
module
"
>
</
script
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL