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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        ⭐ 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\/*"
    ]
}