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
官方網址 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"
    ]
}