This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* X/Twitter Bookmark Remover | |
* | |
* This script automatically removes all bookmarks from your X/Twitter account | |
* by scrolling through your bookmarks page and clicking the remove button for each bookmark. | |
* | |
* HOW TO USE: | |
* 1. Go to your bookmarks page: https://twitter.com/i/bookmarks or https://x.com/i/bookmarks | |
* 2. Open browser developer console (F12 or Ctrl+Shift+J or Cmd+Option+J) | |
* 3. Copy and paste this entire script into the console |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Contact Form</title> | |
<link rel="stylesheet" href="styles.css" /> | |
</head> | |
<body> | |
<!-- FORM HEADER --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Workbench Layout | |
"workbench.layoutControl.type": "menu", | |
// Editor Limit and Size | |
"workbench.editor.limit.enabled": true, | |
"workbench.editor.limit.value": 8, | |
"editor.fontSize": 12, | |
"editor.scrollbar.verticalScrollbarSize": 10, | |
"editor.scrollbar.horizontalScrollbarSize": 10, |