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