SL
SL command implementation of Chrome.
什麼是SL?
SL是由hakatashi開發的Chrome擴展程式,該擴展的主要功能是“SL command implementation of Chrome.”。
擴展截圖
下載SL擴展crx文件
下載SL擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Fancy implementation of the SL command.
Type "sl" on the omnibar then Tab/Space. When you press Enter SL will run on your screen!
SL Supports following options:
-a, --accident: Accident occurs. Passenger screams "HELP!"
-F, --fly: SL will fly to the galaxy.
-l, --long: Long and Little SL will pass.
-r, --reverse: SL goes the railway in the opposite direction.
https://github.com/hakatashi/sl-chrome
========
This is the derived work from "sl command" of Toyoda Masashi.
Copyright 1993,1998,2014 Toyoda Masashi ([email protected])
https://github.com/mtoyoda/sl 擴展基本資訊
| 名稱 | |
| ID | ilmjahoogaalpbjkognjcicmbajphemb |
| 官方網址 | https://chrome.google.com/webstore/detail/sl/ilmjahoogaalpbjkognjcicmbajphemb |
| 簡介 | SL command implementation of Chrome. |
| 檔案大小 | 10.04 KB |
| 安裝次數 | 11 |
| 目前版本 | 0.1.0 |
| 更新時間 | 2015-07-10 |
| 上架時間 | 2015-07-10 |
| 開發者 | hakatashi |
| 付費類型 | free |
| 擴展官網 | https://github.com/hakatashi/sl-chrome |
| 支援的語言 | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"short_name": "SL",
"version": "0.1.0",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "ja",
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/contentscript.js"
]
}
],
"background": {
"scripts": [
"scripts\/chromereload.js",
"scripts\/background.js"
]
},
"omnibox": {
"keyword": "sl"
}
} | |