Light Saber
light saber cursor that follows you
什么是Light Saber?
Light Saber是由FranPR9开发的Chrome扩展程序,该扩展的主要功能是“light saber cursor that follows you”。
扩展截图
下载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
扩展基本信息
名称 | |
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\/" ] } |