Skip to content

Commit

Permalink
block some button
Browse files Browse the repository at this point in the history
  • Loading branch information
fangyuan99 committed Dec 3, 2024
1 parent 28fa49d commit 5417156
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tampermonkey/cookie-share.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@
<div class="cookie-share-container">
<button class="close-btn" onclick="return false;">×</button>
<h1>Cookie Share</h1>
<div class="cookie-share-version">
<div class="cookie-share-version" style="display: none;">
<span>Version 0.0.1</span>
<a href="https://github.com/fangyuan99/cookie-share" target="_blank">GitHub</a>
<a href="#" class="admin-panel-a">Admin Panel</a>
Expand All @@ -685,17 +685,18 @@
class="cookie-id-input"
placeholder="Cookie ID"
>
<button class="generate-btn" onclick="return false;">Generate ID</button>
<button class="generate-btn" onclick="return false;" style="display: none;">Generate ID</button>
</div>
<input type="text"
class="server-url-input"
placeholder="Server Address (e.g., https://example.com)"
value="${GM_getValue(STORAGE_KEYS.CUSTOM_URL, "")}"
style="display: none;"
>
<div class="action-buttons">
<button class="action-btn send-btn">Send Cookie</button>
<button class="action-btn send-btn" style="display: none;">Send Cookie</button>
<button class="action-btn receive-btn">Receive Cookie</button>
</div>
Expand Down

0 comments on commit 5417156

Please sign in to comment.