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
公式URL 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\/"
    ]
}