The Finger Cursor

This extension turns all your cursors into the middle finger.

Was ist The Finger Cursor?

The Finger Cursor ist eine Chrome-Erweiterung, die von Miguel Mota entwickelt wurde, und ihr Hauptmerkmal ist "This extension turns all your cursors into the middle finger.".

Erweiterungsscreenshots

screenshot

The Finger Cursor-Erweiterungs-CRX-Datei herunterladen

Laden Sie The Finger Cursor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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 *                    

Grundlegende Informationen zur Erweiterung

Name The Finger Cursor The Finger Cursor
ID pefbcdoghamgldfkhonodjmmdcfdcfbh
Offizielle URL https://chrome.google.com/webstore/detail/the-finger-cursor/pefbcdoghamgldfkhonodjmmdcfdcfbh
Beschreibung This extension turns all your cursors into the middle finger.
Dateigröße 16.49 KB
Installationsanzahl 8,000
Aktuelle Version 1.3
Letztes Update 2019-04-28
Veröffentlichungsdatum 2019-04-28
Bewertung 2.42/5 Insgesamt 115 Bewertungen
Entwickler Miguel Mota
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/miguelmota/the-finger-cursor
URL der Datenschutzrichtlinien-Seite https://github.com/miguelmota/miguelmota.github.com/wiki/Privacy-Policy
Unterstützte Sprachen 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"
    ]
}