Skip to content
This repository was archived by the owner on May 16, 2018. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
Thumbs.db
node_modules/
8 changes: 8 additions & 0 deletions _locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,14 @@
"message": "Counter Based",
"description": "Counter Based"
},
"six_digit_otp": {
"message": "6 Digit OTP",
"description": "6 Digit OTP"
},
"eight_digit_otp": {
"message": "8 Digit OTP",
"description": "8 Digit OTP"
},
"resize_popup_page": {
"message": "Resize Popup Page",
"description": "Resize Popup Page"
Expand Down
8 changes: 8 additions & 0 deletions _locales/zh_CN/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,14 @@
"message": "基于计数器",
"description": "Counter Based"
},
"six_digit_otp": {
"message": "6 Digit OTP",
"description": "6 Digit OTP"
},
"eight_digit_otp": {
"message": "8 Digit OTP",
"description": "8 Digit OTP"
},
"resize_popup_page": {
"message": "调整弹出页面尺寸",
"description": "Resize Popup Page"
Expand Down
47 changes: 22 additions & 25 deletions css/content.css
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@
#__ga_grayLayout__ {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 1000000;
display: none;
cursor: crosshair;
}

#__ga_grayLayout__ .scan {
width: 100%;
height: 100%;
position: absolute;
top: 0;
opacity: 0.5;
}

#__ga_captureBox__ {
position: absolute;
border: white 1px dashed;
display: none;
}
#__ga_grayLayout__ {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 1000000;
display: none;
cursor: crosshair; }

#__ga_grayLayout__ .scan {
width: 100%;
height: 100%;
position: absolute;
top: 0;
opacity: 0.5; }

#__ga_captureBox__ {
position: absolute;
border: white 1px dashed;
display: none; }
Loading