Simple Auto Refresh & Text Finder PRO

Select the interval in seconds and extension will refresh your page with random interval and can search for a text!

Simple Auto Refresh & Text Finder PROคืออะไร?

Simple Auto Refresh & Text Finder PRO เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://toolsandextensions.com และคุณลักษณะหลักของมันคือ "Select the interval in seconds and extension will refresh your page with random interval and can search for a text!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Auto Refresh & Text Finder PRO

ดาวน์โหลดไฟล์ส่วนขยาย Simple Auto Refresh & Text Finder PRO ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Do you manually refresh the page every few minutes to not miss important update?
Automatically reload the page with a set time interval (you can choose RANDOM intervals!)
Search for the text on a page after the refresh and play a sound when the selected phrase appears!

Main features:
- reload the page automatically every X seconds
- search for the text after reloading and send a sound (SOUND notification was removed due to big upgrade of security with the manifest 3) notification once it's found.
- use random time intervals to refresh the page
- auto refresh more pages at the same time
- see the countdown on the page title!

This is a PRO version of the script and it is completely FREE. It will become a paid extension soon but will remain free for every existing customer! There is no similar extension on the web for FREE!

More features will be added soon! Download and share it with your friends and leave us a good review! :)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Simple Auto Refresh & Text Finder PRO Simple Auto Refresh & Text Finder PRO
ID emgabnonlmpbebngodllidhgjfhohpec
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/simple-auto-refresh-text/emgabnonlmpbebngodllidhgjfhohpec
คำอธิบาย Select the interval in seconds and extension will refresh your page with random interval and can search for a text!
ขนาดไฟล์ 61.9 KB
จำนวนการติดตั้ง 4,495
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2022-09-15
วันที่เผยแพร่ 2020-11-22
คะแนน 4.50/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา http://toolsandextensions.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.toolsandextensions.com/privacypolicy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Auto Refresh & Text Finder PRO",
    "description": "Select the interval in seconds and extension will refresh your page with random interval and can search for a text!",
    "version": "2.0",
    "default_locale": "en",
    "manifest_version": 3,
    "homepage_url": "https:\/\/www.toolsandextensions.com\/",
    "background": {
        "service_worker": "scripts\/background.js",
        "type": "module"
    },
    "permissions": [
        "tabs",
        "notifications",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/library.js",
                "scripts\/content.js"
            ],
            "css": [
                "css\/contentStyles.css"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "images\/easy-auto-refresh-128x128.png",
        "48": "images\/easy-auto-refresh-48x48.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/default-128.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}