Functional scraping of the project page sans files.txt

This commit is contained in:
2025-07-17 11:10:13 -04:00
parent 111e3ee048
commit fbede823e5
2 changed files with 111 additions and 5 deletions

View File

@ -2,7 +2,7 @@ browser.browserAction.onClicked.addListener((tab) => {
console.log('Extension clicked - triggering artifact collection.');
// Check if we're on the correct domain and path
if (!tab.url.startsWith('https://claude.ai/chat/')) {
if (!tab.url.startsWith('https://claude.ai/chat') && !tab.url.startsWith('https://claude.ai/project')) {
console.log('Not on claude.ai chat page');
return;
}