The Finger Cursor

This extension turns all your cursors into the middle finger.

The Finger Cursorคืออะไร?

The Finger Cursor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Miguel Mota และคุณลักษณะหลักของมันคือ "This extension turns all your cursors into the middle finger."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย The Finger Cursor

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

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

                        This extension turns all your cursors into the middle finger. Enabled automatically on installation. Go to chrome://extensions to disable.


* FOR SECURITY REASONS, EXTENSIONS DON'T WORK ON THE CHROME EXTENSIONS WEBSITE AND CHROME BROWSER INTERNAL PAGES *                    

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

ชื่อ The Finger Cursor The Finger Cursor
ID pefbcdoghamgldfkhonodjmmdcfdcfbh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/the-finger-cursor/pefbcdoghamgldfkhonodjmmdcfdcfbh
คำอธิบาย This extension turns all your cursors into the middle finger.
ขนาดไฟล์ 16.49 KB
จำนวนการติดตั้ง 8,000
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2019-04-28
วันที่เผยแพร่ 2019-04-28
คะแนน 2.42/5 รวมทั้งหมด 115 คะแนน
ผู้พัฒนา Miguel Mota
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/miguelmota/the-finger-cursor
URL หน้านโยบายความเป็นส่วนตัว https://github.com/miguelmota/miguelmota.github.com/wiki/Privacy-Policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "The Finger Cursor",
    "description": "This extension turns all your cursors into the middle finger.",
    "version": "1.3",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "extension.css"
            ],
            "js": [
                "extension.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "extension.css",
        "cursor.png",
        "[email protected]"
    ],
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "activeTab",
        "storage"
    ]
}