Web Tracker

Web Tracker helps you track anything on the web.

Web Trackerคืออะไร?

Web Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yafasu และคุณลักษณะหลักของมันคือ "Web Tracker helps you track anything on the web."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Tracker

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

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

                        This extension helps you to track any texts that you are able to select on the web page.

How to use:
- Right click and select on "Select Element...", and choose the element content you want to keep on track.
- A popup window will show up and ask you "Would you like to save this text?", click "OK"
- After accepting the element you want to keep on track, it will be saved in your browser storage.
- If you want to check all elements that you have been saved. Click on the top right corner "Web Tracker" icon, a popup will show up with all the elements.
- The extension will do a self-check if the elements have any updates.
- Element highlighted in yellow in the popup, means that the element has been changed or updated from the web page.                    

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

ชื่อ Web Tracker Web Tracker
ID eblicendjfflnkdiaclejeodniflplga
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-tracker/eblicendjfflnkdiaclejeodniflplga
คำอธิบาย Web Tracker helps you track anything on the web.
ขนาดไฟล์ 32.9 KB
จำนวนการติดตั้ง 224
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2021-11-08
วันที่เผยแพร่ 2021-10-16
ผู้พัฒนา yafasu
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "yafasu",
    "action": {
        "default_icon": {
            "512": "img\/logo_512x512.png"
        },
        "default_title": "Web Tracker"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/js\/scraperscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/js\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "description": "Web Tracker helps you track anything on the web.",
    "icons": {
        "512": "img\/logo_512x512.png"
    },
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "name": "Web Tracker",
    "permissions": [
        "storage",
        "unlimitedStorage",
        "tabs",
        "scripting",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "short_name": "Web Tracker",
    "version": "1.0.3"
}