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

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

                        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
عنوان صفحة سياسة الخصوصية 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"
    ]
}