https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
{ | |
// settings related to pwsh terminal | |
"powershell.enableProfileLoading": true, | |
"terminal.integrated.defaultProfile.windows": "Pwsh🐒", // "Pwsh🐒", | |
// The terminal profile to use for automation-related terminal usage like tasks and debug. This setting will currently be ignored if `terminal.integrated.automationShell.windows` (now deprecated) is set. | |
"terminal.integrated.automationProfile.windows": { | |
"args": [ | |
"-NoLogo" | |
], |
//bookmarklet_title:Open in Jina AI | |
window.open(`https://r.jina.ai/${window.location.href}`, '_blank'); |
javascript:(function(){ | |
const result = [...document.querySelectorAll('.text-bolt-elements-textSecondary + div > div > ._MarkdownContent_1mdbx_1')] | |
.map(node => node.innerText) | |
.reduce((acc, curr) => acc + curr + '\n\n', ''); | |
navigator.clipboard.writeText(result) | |
.then(() => alert('Content copied to clipboard!')) | |
.catch(err => alert('Failed to copy: ' + err)); | |
})(); |