Light Saber

light saber cursor that follows you

什麼是Light Saber?

Light Saber是由FranPR9開發的Chrome擴展程式,該擴展的主要功能是“light saber cursor that follows you”。

擴展截圖

screenshot

下載Light Saber擴展crx文件

下載Light Saber擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Light Saber that follows your cursor.
You can change it color, turn off the sound and send it to the back and front of your page                    

擴展基本資訊

名稱 Light Saber Light Saber
ID ecjhncafajenonjhgojomkbpbnbclkbk
官方網址 https://chrome.google.com/webstore/detail/light-saber/ecjhncafajenonjhgojomkbpbnbclkbk
簡介 light saber cursor that follows you
檔案大小 175 KB
安裝次數 510
目前版本 0.3
更新時間 2015-12-16
上架時間 2015-12-16
評分 1.62/5 共 13 次評分
開發者 FranPR9
付費類型 free
擴展官網 https://github.com/FranPR9/light_saber
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Light Saber",
    "description": "light saber cursor that follows you",
    "version": "0.3",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "img\/lightsaber.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "js": [
                "js\/light_saber.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*.png",
        "audio\/*.WAV"
    ],
    "icons": {
        "16": "img\/lightsaber.png",
        "128": "img\/lightsaber.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/www.google.com\/*",
        "clipboardRead",
        "clipboardWrite",
        "https:\/\/ajax.googleapis.com\/"
    ]
}