The Finger Cursor

This extension turns all your cursors into the middle finger.

什么是The Finger Cursor?

The Finger Cursor是由Miguel Mota开发的Chrome扩展程序,该扩展的主要功能是“This extension turns all your cursors into the middle finger.”。

扩展截图

screenshot

下载The Finger Cursor扩展crx文件

下载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"
    ]
}