...を円で
by
labocho
2016-04-20 [2016/04/20 12:22:12]
選択または入力した文字列 + "を円で" を Google 検索
@@ -1,5 +1,5 @@
/*
- * @title "...を円で"
+ * @title ...を円で
* @description 選択した文字列 + "を円で" を Google 検索
* @include http://*
* @license MIT License
/*
* @title ...を円で
* @description 選択した文字列 + "を円で" を Google 検索
* @include http://*
* @license MIT License
* @require
*/
(function () {
var price, query, url, alternatives, i, matches;
alternatives = [
{pattern: /C\$(.+)/, replace: "$1CAD"},
];
price = window.getSelection().toString();
for (i = 0; i < alternatives.length; i++) {
price = price.replace(alternatives[i].pattern, alternatives[i].replace);
}
query = price + "を円で";
url = "https://www.google.co.jp/search?q=" + encodeURIComponent(query);
window.open(url, "_blank");
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。