Twitch Auto Points

Automatic twitch channel points collection

Twitch Auto Pointsคืออะไร?

Twitch Auto Points เป็นส่วนขยายของ Chrome ที่พัฒนาโดย danv และคุณลักษณะหลักของมันคือ "Automatic twitch channel points collection"

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

screenshot
screenshot

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

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

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

                        Automatically finds the bonus point button on the website and clicks it for you.

- NEW: the extension icon now shows the amount of points it collected for the channel you opened in your tab
- Works in multiple tabs and windows at the same time.
- Optimised for performance
- Only works on twitch websites and gets automatically disabled on other websites
- No data collection whatsoever
- Works in moderator view
- Updated to work with the new twitch UI                    

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

ชื่อ Twitch Auto Points Twitch Auto Points
ID epdcapclkanflhcnialagecbkbpkbcbi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-auto-points/epdcapclkanflhcnialagecbkbpkbcbi
คำอธิบาย Automatic twitch channel points collection
ขนาดไฟล์ 31.04 KB
จำนวนการติดตั้ง 1,277
เวอร์ชันปัจจุบัน 1.2.5
อัปเดตครั้งล่าสุด 2021-05-30
วันที่เผยแพร่ 2020-07-04
คะแนน 4.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา danv
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Spring3/twitch-auto-points
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "danv",
    "name": "Twitch Auto Points",
    "version": "1.2.5",
    "homepage_url": "https:\/\/github.com\/Spring3\/twitch-auto-points",
    "description": "Automatic twitch channel points collection",
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "content_security_policy": "default-src 'self'",
    "background": {
        "scripts": [
            "background\/browserAction.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-color-16.png",
            "32": "icons\/icon-color-32.png",
            "48": "icons\/icon-color-48.png",
            "64": "icons\/icon-color-64.png",
            "96": "icons\/icon-color-96.png",
            "128": "icons\/icon-color-128.png",
            "256": "icons\/icon-color-256.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "contentScripts\/worker.js"
            ],
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "match_about_blank": false,
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png"
    }
}