PDimg
by
noromanba
2012-12-24 [2012/12/24 23:08:02]
search PD image from wikimedia.org
@@ -1,6 +1,6 @@
/*
- * @title PDicon
- * @description search PD icon from wikimedia.org
+ * @title PDimg
+ * @description search PD image from wikimedia.org
* @include http://*
* @license MIT License http://nrm.mit-license.org/2012
* @require
@@ -17,10 +17,10 @@
var query = [
conf.site,
- 'public domain icon',
+ 'public domain',
words
].join(' ');
- location.href = conf.engine + encodeURI(query);
- //console.info(conf.engine + encodeURI(query);
+ //location.href = conf.engine + encodeURI(query);
+ console.info(conf.engine + encodeURI(query));
})();
/*
* @title PDimg
* @description search PD image from wikimedia.org
* @include http://*
* @license MIT License http://nrm.mit-license.org/2012
* @require
*/
(function () {
var words;
if (!(words = prompt('words?'))) return;
var conf = {
engine: 'https://encrypted.google.com/search?tbm=isch&q=',
site: 'site:wikimedia.org'
};
var query = [
conf.site,
'public domain',
words
].join(' ');
//location.href = conf.engine + encodeURI(query);
console.info(conf.engine + encodeURI(query));
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。