Auto Refresh Plus 버전 9.0.6
가격 책정

자동 새로 고침 기능으로 앞서 나가기 지금 다운로드하기

자동 페이지 새로고침 기능을 위한 최고의 브라우저 확장 프로그램, ‘Auto Refresh Plus’를 만나보세요. 사용자 지정 간격을 간편하게 설정하고 웹 페이지를 모니터링하여 최신 콘텐츠를 놓치지 마세요. Chrome 및 Firefox와 호환되는 Auto Refresh Plus는 매끄럽고 효율적인 페이지 새로고침 기능으로 여러분의 브라우징 경험을 한층 더 향상시켜 드립니다. 지금 다운로드하여 끊김 없는 업데이트를 경험해 보세요.
다음에 추가 Chrome
개인정보 보호정책쿠키 정책약관환불 정책

Google 로그인은 안전한 인증 및 기기 간 설정 동기화 목적으로만 사용됩니다.

©AutoRefreshPlus. All Rights Reserved 2014 - 2026

BetterLogic FZE의 제품

시장으로 돌아가기

가격 추적기

이커머스 사이트의 가격 변동 사항을 모니터링하고 이를 강조 표시합니다.

가격
쇼핑
자동화
120 설치
업데이트되었습니다: Oct 7, 2025
shopping

이 스크립트에 대해

이 스크립트는 정규 표현식 패턴을 사용하여 전자상거래 웹사이트의 가격 요소를 자동으로 감지하고 녹색 배경으로 강조 표시합니다. 할인 상품을 빠르게 찾아내고 다양한 제품의 가격을 비교하는 데 매우 유용합니다.

스크립트 구성

URL 패턴

*://*/product/*,*://*/item/*

실행 타이밍

On Each Page Refresh

주입 지점

After Page Load

javascript
1// Price Tracker - Detect and highlight prices on any site
2(function() {
3 'use strict';
4
5 // Regex patterns for different currency formats
6 const pricePatterns = [
7 /\$\d+(?:,\d{3})*(?:\.\d{2})?/g, // $1,234.56
8 /\€\d+(?:,\d{3})*(?:\.\d{2})?/g, // €1,234.56
9 /\£\d+(?:,\d{3})*(?:\.\d{2})?/g, // £1,234.56
10 /\d+(?:,\d{3})*(?:\.\d{2})?\s*(?:USD|EUR|GBP)/gi, // 1234.56 USD
11 ];
12
13 function highlightPrices() {
14 const walker = document.createTreeWalker(
15 document.body,
16 NodeFilter.SHOW_TEXT,
17 null
18 );
19
20 const priceNodes = [];
21 let node;
22
23 while (node = walker.nextNode()) {
24 const text = node.textContent || '';
25 const hasPrice = pricePatterns.some(pattern => pattern.test(text));
26
27 if (hasPrice && node.parentElement) {
28 priceNodes.push(node.parentElement);
29 }
30 }
31
32 // Highlight found prices
33 priceNodes.forEach(element => {
34 if (!element.dataset.priceHighlighted) {
35 element.style.backgroundColor = '#46b881';
36 element.style.color = 'white';
37 element.style.padding = '2px 6px';
38 element.style.borderRadius = '4px';
39 element.style.fontWeight = 'bold';
40 element.dataset.priceHighlighted = 'true';
41 console.log('[Price Tracker] Highlighted:', element.textContent);
42 }
43 });
44 }
45
46 // Run on page load
47 highlightPrices();
48
49 // Re-run when content changes
50 const observer = new MutationObserver(() => {
51 setTimeout(highlightPrices, 300);
52 });
53
54 observer.observe(document.body, { childList: true, subtree: true });
55})();
56

설치 방법

  1. 위의 “스크립트 설치” 버튼을 클릭하여 형식이 지정된 구성 내용을 복사하세요
  2. Auto Refresh Plus 확장 프로그램을 열고 '사용자 지정 스크립트' 섹션으로 이동하세요
  3. 설정 내용을 붙여넣고 변경 사항을 저장하세요
  4. 설정에 따라 해당 URL에서 스크립트가 자동으로 실행됩니다