Twitch Auto Points Clicker & Point Tracker

Twitch point collector and point tracker.

Twitch Auto Points Clicker & Point Trackerคืออะไร?

Twitch Auto Points Clicker & Point Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย svendy และคุณลักษณะหลักของมันคือ "Twitch point collector and point tracker."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Auto Points Clicker & Point Tracker

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

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

                        ⭐ Features:
  ·  Tracks the points collected by this extension and displays in the extension popup.
  ·  Grabs points on multiple tabs.
  ·  No crazy permissions.
  ·  Lightweight
——————————————————————————————
⭐ Permissions explained:
  ·   "storage" permission - extension stores your points to your sync profile 
       on your current browser. Also is used to display points in the extension 
       popup.
  ·   "https://*.twitch.tv/*" host permissions - Permission to only run the extension at the 
       Twitch.tv domain.
——————————————————————————————
⭐ Source code:
  ·   https://github.com/svn-dys/Auto-Channel-Points-Clicker-Point-Tracker
——————————————————————————————
⭐     · Thank you so much for downloading my extension! ·     ⭐                    

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

ชื่อ Twitch Auto Points Clicker & Point Tracker Twitch Auto Points Clicker & Point Tracker
ID afflghncaaiaebonpbplhpjhbkaciaim
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-auto-points-clicke/afflghncaaiaebonpbplhpjhbkaciaim
คำอธิบาย Twitch point collector and point tracker.
ขนาดไฟล์ 78.96 KB
จำนวนการติดตั้ง 8,450
เวอร์ชันปัจจุบัน 2.7
อัปเดตครั้งล่าสุด 2023-03-06
วันที่เผยแพร่ 2020-07-14
คะแนน 3.80/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา svendy
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.twitch.tv/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Auto Points Clicker & Point Tracker",
    "version": "2.7",
    "manifest_version": 3,
    "description": "Twitch point collector and point tracker.",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": ".\/src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                ".\/src\/grab-chest.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": ".\/icons\/main_icon.png",
        "default_title": "Twitch Auto Channel Points Clicker & Point Tracker",
        "default_popup": ".\/src\/popup.html"
    },
    "host_permissions": [
        "https:\/\/*.twitch.tv\/*"
    ]
}