Filter | Description | Example |
---|---|---|
allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
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 () => { | |
const liElements = document.querySelectorAll('.artdeco-list.mn-invitation-list li'); | |
const total = liElements.length; | |
for (let idx = 0; idx < total; idx++) { | |
console.log(`Withdrawing ${idx + 1}/${total}...`); | |
const li = liElements[idx]; | |
const withdrawButton = li.querySelector('button'); // Initial "Withdraw" button |
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
// Function to extract transcript | |
function extractTranscript() { | |
// Get all list cells that contain transcript entries | |
const listCells = document.querySelectorAll('.ms-List-cell'); | |
let transcript = ''; | |
// Iterate through each list cell | |
listCells.forEach((cell, index) => { | |
// Get speaker name if it exists | |
const speakerEl = cell.querySelector('[class*="itemDisplayName-"]'); |
OlderNewer