{
  "version": "1.0.0",
  "exported_at": "2026-05-31T18:45:00.000Z",
  "project": {
    "name": "Google Job Scraper by Keywords",
    "description": "Best-effort Google Jobs keyword scraper equivalent to the Octoparse Google Job Scraper by Keywords. Uses navigate.urls[] as a multi-keyword loop, loads Google Jobs result cards, extracts job fields to google-job-search.csv, and appends results across keyword URLs. Google returned an unusual-traffic / CAPTCHA page during testing; this template retries after pause+refresh, then writes a diagnostic row if access is still blocked because CAPTCHA cannot be solved automatically.",
    "color": "bg-[#4589ff]",
    "template_id": "ai-generated"
  },
  "blocks": [
    {
      "block_id": "set-window-size-1",
      "block_type": "process",
      "title": "Set Window Size",
      "description": "Set browser window dimensions",
      "position_x": 100,
      "position_y": 240,
      "config": {
        "width": 1920,
        "height": 1080,
        "color": "bg-[#4589ff]"
      }
    },
    {
      "block_id": "navigate-1",
      "block_type": "process",
      "title": "Navigate",
      "description": "Go to a URL",
      "position_x": 460,
      "position_y": 240,
      "config": {
        "urls": [
          "https://www.google.com/search?q=Software+Engineer+in+San+Francisco&udm=8"
        ],
        "color": "bg-[#4589ff]"
      }
    },
    {
      "block_id": "wait-for-page-load-1",
      "block_type": "process",
      "title": "Wait for Page Load",
      "description": "Wait for page to finish loading",
      "position_x": 820,
      "position_y": 240,
      "config": {
        "timeout": 30,
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "sleep-1",
      "block_type": "process",
      "title": "Sleep",
      "description": "Wait for specified time",
      "position_x": 1180,
      "position_y": 240,
      "config": {
        "duration": 3,
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "element-exists-1",
      "block_type": "process",
      "title": "Element Exists",
      "description": "Check if element exists",
      "position_x": 1540,
      "position_y": 240,
      "config": {
        "selector": "#captcha-form, iframe[src*='recaptcha'], .g-recaptcha, form[action='index']",
        "color": "bg-[#ff832b]"
      }
    },
    {
      "block_id": "sleep-3",
      "block_type": "process",
      "title": "Sleep",
      "description": "Wait for specified time",
      "position_x": 1900,
      "position_y": 240,
      "config": {
        "duration": 15,
        "color": "bg-[#ff832b]"
      }
    },
    {
      "block_id": "refresh-1",
      "block_type": "process",
      "title": "Refresh",
      "description": "Reload current page",
      "position_x": 2260,
      "position_y": 240,
      "config": {
        "color": "bg-[#ff832b]"
      }
    },
    {
      "block_id": "wait-for-page-load-2",
      "block_type": "process",
      "title": "Wait for Page Load",
      "description": "Wait for page to finish loading",
      "position_x": 2620,
      "position_y": 240,
      "config": {
        "timeout": 30,
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "element-exists-2",
      "block_type": "process",
      "title": "Element Exists",
      "description": "Check if element exists",
      "position_x": 2980,
      "position_y": 240,
      "config": {
        "selector": "#captcha-form, iframe[src*='recaptcha'], .g-recaptcha, form[action='index']",
        "color": "bg-[#ff832b]"
      }
    },
    {
      "block_id": "structured-export-2",
      "block_type": "process",
      "title": "Structured Export",
      "description": "Export data with custom columns",
      "position_x": 3340,
      "position_y": 240,
      "config": {
        "rowSelector": "body",
        "fileName": "google-job-search.csv",
        "saveLocation": "C:\\Users\\theskd\\Documents\\UScraper\\templates",
        "includeHeaders": true,
        "fileMode": "append",
        "color": "bg-[#42be65]",
        "columns": [
          {
            "name": "keyword",
            "selector": "(()=>{try{return new URLSearchParams(new URL(document.querySelector('input[name=\"continue\"]')?.value||location.href).search).get('q')||new URLSearchParams(location.search).get('q')||'';}catch(e){return new URLSearchParams(location.search).get('q')||'';}})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_title",
            "selector": "'BLOCKED_BY_GOOGLE_CAPTCHA'",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "company",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "location",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "source",
            "selector": "'Google unusual traffic / CAPTCHA page'",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_post_time",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "employment_type",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "salary",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "degree_requirement",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_area1",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_area2",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_area3",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_detail_URL",
            "selector": "location.href",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_highlights",
            "selector": "'Google blocked automated access; solve CAPTCHA in a normal browser profile or reduce request rate, then rerun.'",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "qualifications",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "benefits",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "responsibilities",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_description",
            "selector": "(document.body.innerText||'').replace(/\\s+/g,' ').slice(0,1000)",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "website",
            "selector": "'google.com'",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "emails",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "company_rating1",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "company_rating2",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "company_rating3",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "apply_links",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          }
        ]
      }
    },
    {
      "block_id": "loop-continue-2",
      "block_type": "process",
      "title": "Loop Continue",
      "description": "Continue multi-input loop",
      "position_x": 3700,
      "position_y": 240,
      "config": {
        "color": "bg-[#8d8d8d]"
      }
    },
    {
      "block_id": "wait-for-element-1",
      "block_type": "process",
      "title": "Wait for Element",
      "description": "Wait until element appears",
      "position_x": 1540,
      "position_y": 600,
      "config": {
        "selector": "div[role='listitem'], li.iFjolb, div[jsname='CaV2mb'], [data-ved] [role='heading']",
        "timeout": 30,
        "visible": true,
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "inject-javascript-1",
      "block_type": "process",
      "title": "Inject JavaScript",
      "description": "Execute custom JavaScript",
      "position_x": 1900,
      "position_y": 600,
      "config": {
        "jsCode": "(async()=>{const sleep=ms=>new Promise(r=>setTimeout(r,ms));const containers=Array.from(document.querySelectorAll('[role=\"feed\"],[role=\"list\"],div[aria-label*=\"Jobs\"],div[aria-label*=\"jobs\"],div[tabindex=\"0\"]')).filter(el=>el.scrollHeight>el.clientHeight);const targets=containers.length?containers:[document.scrollingElement||document.documentElement];for(let i=0;i<12;i++){for(const el of targets){try{el.scrollTop=el.scrollHeight;el.dispatchEvent(new Event('scroll',{bubbles:true}));}catch(e){}}window.scrollTo(0,document.body.scrollHeight);await sleep(600);}return String(targets.length);})()",
        "waitForCompletion": true,
        "timeout": 20,
        "color": "bg-[#a56eff]"
      }
    },
    {
      "block_id": "sleep-2",
      "block_type": "process",
      "title": "Sleep",
      "description": "Wait for specified time",
      "position_x": 2260,
      "position_y": 600,
      "config": {
        "duration": 2,
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "structured-export-1",
      "block_type": "process",
      "title": "Structured Export",
      "description": "Export data with custom columns",
      "position_x": 2620,
      "position_y": 600,
      "config": {
        "rowSelector": "div[role='listitem'], li.iFjolb, div[jsname='CaV2mb']",
        "fileName": "google-job-search.csv",
        "saveLocation": "C:\\Users\\theskd\\Documents\\UScraper\\templates",
        "includeHeaders": true,
        "fileMode": "append",
        "color": "bg-[#42be65]",
        "columns": [
          {
            "name": "keyword",
            "selector": "(()=>{try{return new URLSearchParams(location.search).get('q')||document.querySelector('textarea[name=\"q\"],input[name=\"q\"]')?.value||'';}catch(e){return '';}})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_title",
            "selector": "(()=>{const q=s=>ROW.querySelector(s)?.innerText?.trim();const lines=(ROW.innerText||'').split('\\n').map(x=>x.trim()).filter(Boolean);return q('.BjJfJf,[role=\"heading\"],h3')||lines[0]||'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "company",
            "selector": "(()=>{const q=s=>ROW.querySelector(s)?.innerText?.trim();const lines=(ROW.innerText||'').split('\\n').map(x=>x.trim()).filter(Boolean);return q('.vNEEBe,.nJlQNd,[data-company-name]')||lines[1]||'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "location",
            "selector": "(()=>{const q=s=>ROW.querySelector(s)?.innerText?.trim();const lines=(ROW.innerText||'').split('\\n').map(x=>x.trim()).filter(Boolean);const hit=lines.find(x=>/\\b[A-Z][a-z]+,\\s*[A-Z]{2}\\b|Remote|Hybrid|United States/i.test(x));return q('.Qk80Jf,.sMzDkb,[data-location]')||hit||lines[2]||'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "source",
            "selector": "(()=>{const lines=(ROW.innerText||'').split('\\n').map(x=>x.trim()).filter(Boolean);const via=lines.find(x=>/^via\\s+/i.test(x));return via?via.replace(/^via\\s+/i,''):'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_post_time",
            "selector": "(()=>{const t=ROW.innerText||'';const m=t.match(/(?:Posted\\s*)?(?:\\d+\\s*(?:hour|day|week|month)s?\\s*ago|Today|Yesterday|Just posted)/i);return m?m[0]:'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "employment_type",
            "selector": "(()=>{const t=ROW.innerText||'';const vals=[...new Set((t.match(/Full-time|Part-time|Contract|Temporary|Internship|Permanent|Remote|Hybrid/gi)||[]).map(x=>x.trim()))];return vals.join(' | ');})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "salary",
            "selector": "(()=>{const t=ROW.innerText||'';const m=t.match(/\\$[\\d,.]+(?:\\s*-\\s*\\$?[\\d,.]+)?(?:\\s*(?:a year|per year|\\/yr|hour|\\/hr|annually))?/i);return m?m[0]:'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "degree_requirement",
            "selector": "(()=>{const t=ROW.innerText||'';const m=t.match(/(?:Bachelor'?s?|Master'?s?|Ph\\.?D\\.?|Associate'?s?)\\s+(?:Degree|degree)?[^\\n.;]*/i);return m?m[0].trim():'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_area1",
            "selector": "(()=>{const t=ROW.innerText||'';const m=t.match(/Engineering|Software|Technology|Data|Product|Design|Finance|Operations|Sales|Marketing/i);return m?m[0]:'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_area2",
            "selector": "(()=>{const t=ROW.innerText||'';const vals=[...new Set(t.match(/Engineering|Software|Technology|Data|Product|Design|Finance|Operations|Sales|Marketing/gi)||[])];return vals[1]||'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_area3",
            "selector": "(()=>{const t=ROW.innerText||'';const vals=[...new Set(t.match(/Engineering|Software|Technology|Data|Product|Design|Finance|Operations|Sales|Marketing/gi)||[])];return vals[2]||'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_detail_URL",
            "selector": "(()=>{return ROW.querySelector('a[href]')?.href||location.href;})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_highlights",
            "selector": "(()=>{const t=ROW.innerText||'';const lines=t.split('\\n').map(x=>x.trim()).filter(Boolean);return lines.slice(0,6).join(' | ');})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "qualifications",
            "selector": "(()=>{const t=ROW.innerText||'';const m=t.match(/(?:Qualifications?|Requirements?|Basic Qualifications?)([\\s\\S]{0,900})/i);return m?m[0].replace(/\\s+/g,' ').trim():'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "benefits",
            "selector": "(()=>{const t=ROW.innerText||'';const m=t.match(/(?:Benefits?|Health insurance|Dental|Vision|401\\(k\\)|Paid time off)([\\s\\S]{0,700})/i);return m?m[0].replace(/\\s+/g,' ').trim():'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "responsibilities",
            "selector": "(()=>{const t=ROW.innerText||'';const m=t.match(/(?:Responsibilities?|What you.?ll do|Duties)([\\s\\S]{0,900})/i);return m?m[0].replace(/\\s+/g,' ').trim():'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "job_description",
            "selector": "(()=>{return (ROW.innerText||'').replace(/\\s+/g,' ').trim();})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "website",
            "selector": "(()=>{const hrefs=Array.from(ROW.querySelectorAll('a[href]')).map(a=>a.href).filter(h=>!/(google\\.com\\/search|google\\.com\\/sorry)/i.test(h));try{return hrefs[0]?new URL(hrefs[0]).hostname:'';}catch(e){return '';}})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "emails",
            "selector": "(()=>{const t=ROW.innerText||'';return [...new Set(t.match(/[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,}/gi)||[])].join(' | ');})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "company_rating1",
            "selector": "(()=>{const t=ROW.innerText||'';const m=t.match(/\\b[1-5](?:\\.\\d)?\\s*(?:★|stars?|\\/5)\\b/i);return m?m[0]:'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "company_rating2",
            "selector": "(()=>{const t=ROW.innerText||'';const vals=t.match(/\\b[1-5](?:\\.\\d)?\\s*(?:★|stars?|\\/5)\\b/gi)||[];return vals[1]||'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "company_rating3",
            "selector": "(()=>{const t=ROW.innerText||'';const vals=t.match(/\\b[1-5](?:\\.\\d)?\\s*(?:★|stars?|\\/5)\\b/gi)||[];return vals[2]||'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "apply_links",
            "selector": "(()=>{const hrefs=Array.from(ROW.querySelectorAll('a[href]')).map(a=>a.href).filter(h=>!/(google\\.com\\/search|google\\.com\\/sorry|accounts\\.google)/i.test(h));return [...new Set(hrefs)].join(' | ');})()",
            "attribute": "text",
            "isJs": true
          }
        ]
      }
    },
    {
      "block_id": "loop-continue-1",
      "block_type": "process",
      "title": "Loop Continue",
      "description": "Continue multi-input loop",
      "position_x": 2980,
      "position_y": 600,
      "config": {
        "color": "bg-[#8d8d8d]"
      }
    }
  ],
  "connections": [
    {
      "from_block_id": "set-window-size-1",
      "from_connector_id": "right",
      "to_block_id": "navigate-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "navigate-1",
      "from_connector_id": "right",
      "to_block_id": "wait-for-page-load-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "wait-for-page-load-1",
      "from_connector_id": "right",
      "to_block_id": "sleep-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "sleep-1",
      "from_connector_id": "right",
      "to_block_id": "element-exists-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "element-exists-1",
      "from_connector_id": "true",
      "to_block_id": "sleep-3",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "sleep-3",
      "from_connector_id": "right",
      "to_block_id": "refresh-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "refresh-1",
      "from_connector_id": "right",
      "to_block_id": "wait-for-page-load-2",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "wait-for-page-load-2",
      "from_connector_id": "right",
      "to_block_id": "element-exists-2",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "element-exists-2",
      "from_connector_id": "true",
      "to_block_id": "structured-export-2",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "structured-export-2",
      "from_connector_id": "right",
      "to_block_id": "loop-continue-2",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "element-exists-2",
      "from_connector_id": "false",
      "to_block_id": "wait-for-element-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "element-exists-1",
      "from_connector_id": "false",
      "to_block_id": "wait-for-element-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "wait-for-element-1",
      "from_connector_id": "right",
      "to_block_id": "inject-javascript-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "inject-javascript-1",
      "from_connector_id": "right",
      "to_block_id": "sleep-2",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "sleep-2",
      "from_connector_id": "right",
      "to_block_id": "structured-export-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "structured-export-1",
      "from_connector_id": "right",
      "to_block_id": "loop-continue-1",
      "to_connector_id": "left"
    }
  ],
  "canvas_elements": [
    {
      "id": "group-entry",
      "element_type": "group",
      "title": "Entry & Setup",
      "color": "#4589ff",
      "position_x": 28,
      "position_y": 136,
      "width": 380,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "set-window-size-1"
        ]
      }
    },
    {
      "id": "group-load",
      "element_type": "group",
      "title": "Page Load",
      "color": "#08bdba",
      "position_x": 388,
      "position_y": 136,
      "width": 2480,
      "height": 656,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "navigate-1",
          "wait-for-page-load-1",
          "sleep-1",
          "sleep-3",
          "refresh-1",
          "wait-for-page-load-2",
          "wait-for-element-1",
          "sleep-2"
        ]
      }
    },
    {
      "id": "group-pagination",
      "element_type": "group",
      "title": "Pagination Loop",
      "color": "#ff832b",
      "position_x": 1468,
      "position_y": 136,
      "width": 2480,
      "height": 656,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "element-exists-1",
          "element-exists-2",
          "loop-continue-2",
          "loop-continue-1"
        ]
      }
    },
    {
      "id": "group-extract",
      "element_type": "group",
      "title": "Data Extraction",
      "color": "#42be65",
      "position_x": 2548,
      "position_y": 136,
      "width": 1040,
      "height": 656,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "structured-export-2",
          "structured-export-1"
        ]
      }
    },
    {
      "id": "group-interaction",
      "element_type": "group",
      "title": "Interaction",
      "color": "#a56eff",
      "position_x": 1828,
      "position_y": 496,
      "width": 380,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "inject-javascript-1"
        ]
      }
    },
    {
      "id": "note-overview",
      "element_type": "note",
      "title": "Overview",
      "content": "Best-effort Google Jobs keyword scraper equivalent to the Octoparse Google Job Scraper by Keywords. Uses navigate.urls[] as a multi-keyword loop, loads Google Jobs result cards, extracts job fields to google-job-search.csv, and appends results across keyword URLs. Google returned an unusual-traffic / CAPTCHA page during testing; this template retries after pause+refresh, then writes a diagnostic row if access is still blocked because CAPTCHA cannot be solved automatically.",
      "color": "#f1c21b",
      "position_x": 80,
      "position_y": 20,
      "width": 480,
      "height": 160,
      "z_index": 22,
      "data": {}
    },
    {
      "id": "note-block-navigate-1",
      "element_type": "note",
      "title": "Note: Navigate",
      "content": "Multi-URL loop over 1 pages. Pair with loop-continue at the end of each iteration.",
      "color": "#ee5396",
      "position_x": 660,
      "position_y": 220,
      "width": 328,
      "height": 107,
      "z_index": 22,
      "data": {
        "block_id": "navigate-1"
      }
    },
    {
      "id": "note-block-element-exists-1",
      "element_type": "note",
      "title": "Note: Element Exists",
      "content": "Condition block: checks `#captcha-form, iframe[src*='recaptcha'], .g-recaptcha, form[action='index']`. True / False branches control which path runs next. Keep enough space between branches so both connector lines are visible.",
      "color": "#ee5396",
      "position_x": 1740,
      "position_y": 220,
      "width": 340,
      "height": 155,
      "z_index": 22,
      "data": {
        "block_id": "element-exists-1"
      }
    },
    {
      "id": "note-block-structured-export-2",
      "element_type": "note",
      "title": "Note: Structured Export",
      "content": "Structured export with JS columns (keyword, job_title, company, location, source). These selectors are fragile — update if the site layout changes.",
      "color": "#ee5396",
      "position_x": 3540,
      "position_y": 220,
      "width": 340,
      "height": 129,
      "z_index": 22,
      "data": {
        "block_id": "structured-export-2"
      }
    },
    {
      "id": "note-block-inject-javascript-1",
      "element_type": "note",
      "title": "Note: Inject JavaScript",
      "content": "Runs custom JavaScript in the page: `(async()=>{const sleep=ms=>new Promise(r=>setTimeout(r,ms));const containers=Array.from(document.que...` Verify in browser if results are empty.",
      "color": "#ee5396",
      "position_x": 2100,
      "position_y": 580,
      "width": 340,
      "height": 140,
      "z_index": 22,
      "data": {
        "block_id": "inject-javascript-1"
      }
    },
    {
      "id": "note-block-structured-export-1",
      "element_type": "note",
      "title": "Note: Structured Export",
      "content": "Structured export with JS columns (keyword, job_title, company, location, source). These selectors are fragile — update if the site layout changes.",
      "color": "#ee5396",
      "position_x": 2820,
      "position_y": 580,
      "width": 340,
      "height": 129,
      "z_index": 22,
      "data": {
        "block_id": "structured-export-1"
      }
    },
    {
      "id": "note-block-loop-continue-1",
      "element_type": "note",
      "title": "Note: Loop Continue",
      "content": "Loop Continue advances a multi-URL or multi-text loop. Place at the end of the loop body with a clear back-edge to the loop start.",
      "color": "#ee5396",
      "position_x": 3180,
      "position_y": 580,
      "width": 340,
      "height": 123,
      "z_index": 22,
      "data": {
        "block_id": "loop-continue-1"
      }
    }
  ]
}