Super Simple Auto Refresh

Very easy auto refresher: choose random or fixed interval to refresh the page. Search for text and get notification as it's found

Super Simple Auto Refreshคืออะไร?

Super Simple Auto Refresh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.supersimpleautorefresh.com และคุณลักษณะหลักของมันคือ "Very easy auto refresher: choose random or fixed interval to refresh the page. Search for text and get notification as it's found"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Super Simple Auto Refresh is an extension that helps you automatically reload tabs of your choice. It automatically reloads web pages after a set number of seconds or random time intervals with the ability to search for text on the reloaded page and send notifications. Works on any website. No setup needed, you can start and stop the timers with one click.

Features:
- Refresh pages after a set number of seconds.
- Refresh pages after a random time interval to avoid being detected as a bot
- Automatically search for text on the reloaded web page and get a notification when it's found OR when the text is not present on the page anymore.
- Set individual timers for each tab.
- Saves your settings on every page.
- Saves web page scroll position.

To start the timer click on the extension icon and choose the desired time interval setting. To access this tool easier pin it to your toolbar by right-clicking the  icon and selecting the Pin option.

If you like Super Simple Auto Refresh please tell your friends, rate it, write a review and send us your feedback.

Note:
If you need to run it on 2 same websites - just use unique urls (for example add a parameter to url: ?anytext in the end of url)                    

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

ชื่อ Super Simple Auto Refresh Super Simple Auto Refresh
ID kdmoopcbpiifbaimhpajimajmdkbjghh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/kdmoopcbpiifbaimhpajimajmdkbjghh
คำอธิบาย Very easy auto refresher: choose random or fixed interval to refresh the page. Search for text and get notification as it's found
ขนาดไฟล์ 66.79 KB
จำนวนการติดตั้ง 31,834
เวอร์ชันปัจจุบัน 3.0
อัปเดตครั้งล่าสุด 2023-05-18
วันที่เผยแพร่ 2021-04-14
คะแนน 4.07/5 รวมทั้งหมด 29 คะแนน
ผู้พัฒนา https://www.supersimpleautorefresh.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/1PUItoXjuAkJcEIA41D0dHZIXO8d7nTUMBPcRYkNkq4w/edit?usp=sharing
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_scrname__",
    "description": "__MSG_descript__",
    "version": "3.0",
    "homepage_url": "https:\/\/www.supersimpleautorefresh.com",
    "default_locale": "en",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "tabs",
        "notifications",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "library.js",
                "web_accessible_resources.js"
            ],
            "css": [
                "contentStyles.css"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "images\/icon128b.png",
        "48": "images\/icon48b.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/default-128.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}