The Finger Cursor

This extension turns all your cursors into the middle finger.

What is The Finger Cursor?

The Finger Cursor is a Chrome extension developed by Miguel Mota, and its main feature is "This extension turns all your cursors into the middle finger.".

Extension Screenshots

screenshot

Download The Finger Cursor Extension CRX File

Download The Finger Cursor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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 *                    

Extension Basic Information

Name The Finger Cursor The Finger Cursor
ID pefbcdoghamgldfkhonodjmmdcfdcfbh
Official URL https://chrome.google.com/webstore/detail/the-finger-cursor/pefbcdoghamgldfkhonodjmmdcfdcfbh
Description This extension turns all your cursors into the middle finger.
File Size 16.49 KB
Installation Count 8,000
Current Version 1.3
Last Updated 2019-04-28
Publish Date 2019-04-28
Rating 2.42/5 Total 115 Ratings
Developer Miguel Mota
Email [email protected]
Payment Type free
Extension Website https://github.com/miguelmota/the-finger-cursor
Privacy Policy Page URL https://github.com/miguelmota/miguelmota.github.com/wiki/Privacy-Policy
Supported Languages 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"
    ]
}