Google Chromeshows in Settings > Apps > Default apps.htm,.html,HTTP,HTTPSmay look assigned to Chrome- But clicking links does nothing
- PowerShell shows:
Start-Process "http://example.com"->Application not found
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
| <# | |
| .SYNOPSIS | |
| Exports a full inventory of installed Chrome extensions across all profiles to CSV and JSON, | |
| and physically copies the extension source files and user data. | |
| .DESCRIPTION | |
| Scans every Chrome profile on the current machine and collects extension metadata from | |
| manifest.json and the profile's Preferences file: name, version, enabled state, install | |
| time, permissions, manifest version (MV2/MV3), and more. |
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
| // ==UserScript== | |
| // @name 🍌 Gemini NanoBanana watermark replacer | |
| // @description Removes Gemini watermark using patch-based texture synthesis. | |
| // Finds the best matching texture patch nearby and blends it in. | |
| // No data leaves your device. | |
| // @namespace Claude | |
| // @version 3.0 | |
| // @author Claude | |
| // @match https://gemini.google.com/* | |
| // @grant none |
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
| // ==UserScript== | |
| // @name Gemini Chat Toggle - Hide Chat & Fullscreen Canvas | |
| // @namespace Duuuh | |
| // @version 5.2 | |
| // @description Toggle button to hide everything except canvas on Google Gemini | |
| // @author Duuuh | |
| // @match *://gemini.google.com/* | |
| // @grant none | |
| // @run-at document-end | |
| // ==/UserScript== |
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
| // ==UserScript== | |
| // @name ChatGPT Message PDF Downloader — Arabic/RTL (no @require) | |
| // @namespace https://github.com/ | |
| // @version 10.0 | |
| // @description Export any ChatGPT message to a centered A4 PDF, with full Arabic/RTL support and dark theme. Normal click = selectable text via print; Shift+click = one-click image PDF. | |
| // @author You | |
| // @match https://chatgpt.com/* | |
| // @match https://chat.openai.com/* | |
| // @grant GM_xmlhttpRequest | |
| // @grant GM.xmlHttpRequest |
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
| javascript:(function(){ | |
| const delay = ms => new Promise(r => setTimeout(r, ms)); | |
| // ── Selectors ────────────────────────────────────────────────────────────── | |
| const triggerSelectors = [ | |
| '[aria-haspopup="listbox"]','[aria-haspopup="true"]','[aria-expanded]', | |
| 'button[class*="select"]','div[class*="select"]', | |
| '[class*="dropdown"] > button','[class*="trigger"]','select', | |
| ]; | |
| const optionSelectors = [ |
This guide turns your Replit Expo project into a real installable Android app (APK) you can sideload (install directly) without using Expo Go or publishing to the Play Store.
- Expo Go + QR = runs your app inside the Expo Go container and usually needs an internet/dev server.
- EAS Build (internal distribution) = produces a standalone APK you can install like a normal app.
This covers the “LDPlayer-served” promos: home-screen recommended games row, splash/promo banners, and other injected junk. We’ll use layered defenses so it stays gone.
- LDPlayer home screen “recommended games” strip (like in your screenshot)
- In-emulator promos coming from LD system apps (store/market/recommendation services)
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
| (async function() { | |
| // --- CONFIGURATION --- | |
| const STORAGE_KEY = 'moodle_drive_v13_accurate_nothumbs'; | |
| const CONCURRENCY = 5; | |
| // --- 1. OPEN UI --- | |
| const driveWindow = window.open("", "Course_Drive_Pro", "width=1280,height=900,scrollbars=yes"); | |
| if (!driveWindow) { alert("Please allow popups!"); return; } | |
| driveWindow.document.write(` |
NewerOlder