The Finger Cursor

This extension turns all your cursors into the middle finger.

Co to jest The Finger Cursor?

The Finger Cursor to rozszerzenie Chrome opracowane przez Miguel Mota, a jego główną funkcją jest „This extension turns all your cursors into the middle finger.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia The Finger Cursor

Pobierz pliki rozszerzeń The Finger Cursor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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 *                    

Podstawowe informacje o rozszerzeniu

Nazwa The Finger Cursor The Finger Cursor
ID pefbcdoghamgldfkhonodjmmdcfdcfbh
Oficjalny URL https://chrome.google.com/webstore/detail/the-finger-cursor/pefbcdoghamgldfkhonodjmmdcfdcfbh
Opis This extension turns all your cursors into the middle finger.
Rozmiar pliku 16.49 KB
Liczba instalacji 8,000
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2019-04-28
Data Publikacji 2019-04-28
Ocena 2.42/5 Łącznie 115 Oceny
Deweloper Miguel Mota
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/miguelmota/the-finger-cursor
Adres URL Strony Polityki Prywatności https://github.com/miguelmota/miguelmota.github.com/wiki/Privacy-Policy
Obsługiwane Języki 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"
    ]
}