c..
@@ -3,16 +3,18 @@
* @description up dir
* @include http://*
* @license MIT License
- * @private
*/
-location.search='';
-if(location.pathname!='/') {
- a=location.pathname.split('/');
- if(a.pop()=='')a.pop();
- location.pathname=a.join('/');
-}else{
- b=location.hostname.split('.');
- b.shift();
- location.hostname=b.join('.');
+if (location.search != '') {
+ location.search = '';
+} else {
+ if (location.pathname != '/') {
+ a = location.pathname.split('/');
+ if (a.pop() == '') a.pop();
+ location.pathname = a.join('/');
+ } else {
+ b = location.hostname.split('.');
+ b.shift();
+ location.hostname = b.join('.');
+ }
}
/*
* @title cd ..
* @description up dir
* @include http://*
* @license MIT License
*/
if (location.search != '') {
location.search = '';
} else {
if (location.pathname != '/') {
a = location.pathname.split('/');
if (a.pop() == '') a.pop();
location.pathname = a.join('/');
} else {
b = location.hostname.split('.');
b.shift();
location.hostname = b.join('.');
}
}
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。