-
-
Save geshan/2d565a5354a9a5ea87c1f03ef3de08c0 to your computer and use it in GitHub Desktop.
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
| urls = $$('a'); | |
| links = []; | |
| for (url in urls) { | |
| const href = urls[url].href; | |
| if (href.startsWith('https://relevanceai.com') && !href.includes('#') && !links.includes(href)) { | |
| links.push(href); | |
| } | |
| } | |
| console.log(links); | |
| console.log(links.join(" ")); |
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
| https://relevanceai.com/ai-ops-bootcamp | |
| https://relevanceai.com/ | |
| https://relevanceai.com/agents | |
| https://relevanceai.com/workforce | |
| https://relevanceai.com/tool | |
| https://relevanceai.com/integrations | |
| https://relevanceai.com/api | |
| https://relevanceai.com/invent | |
| https://relevanceai.com/metadata | |
| https://relevanceai.com/schedule-work | |
| https://relevanceai.com/chat-embed | |
| https://relevanceai.com/phone-agent | |
| https://relevanceai.com/relevance-chat | |
| https://relevanceai.com/function/sales | |
| https://relevanceai.com/function/marketing | |
| https://relevanceai.com/function/customer-support | |
| https://relevanceai.com/function/operations | |
| https://relevanceai.com/lima-lifecycle-marketing-agent | |
| https://relevanceai.com/apla-your-ai-account-research-agent | |
| https://relevanceai.com/crm-enrichment-agent | |
| https://relevanceai.com/qualify-book-meetings | |
| https://relevanceai.com/seo-agent | |
| https://relevanceai.com/customer-support-agent | |
| https://relevanceai.com/sales-note-taker-agent | |
| https://relevanceai.com/mrp-agent | |
| https://relevanceai.com/blog/the-definitive-guide-understanding-ai-agents-vs-ai-workflows | |
| https://relevanceai.com/docs | |
| https://relevanceai.com/customers | |
| https://relevanceai.com/changelog | |
| https://relevanceai.com/templates | |
| https://relevanceai.com/careers | |
| https://relevanceai.com/learn/what-is-the-ai-workforce | |
| https://relevanceai.com/customers/send-payments | |
| https://relevanceai.com/learn | |
| https://relevanceai.com/pricing | |
| https://relevanceai.com/customers/qualified | |
| https://relevanceai.com/customers/safetyculture | |
| https://relevanceai.com/multi-agents | |
| https://relevanceai.com/tools | |
| https://relevanceai.com/custom-actions-for-gpts |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
let photoDivs = $$('div.spf-product-card__image-main');
let photoUrls = [];
for (photoDiv of photoDivs) {
console.log(photoDiv)
const photoUrl = photoDiv.style.backgroundImage;
photoUrls.push(photoUrl);
}
console.log(photoUrls);
console.log(photoUrls.join(" "));