-
-
Notifications
You must be signed in to change notification settings - Fork 1
151 lines (142 loc) · 5.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// ==UserScript==
// @name ParamCleaner
// @description URL から不要なパラメーターを削除し、history.replaceStateでURLを書き換えます
// @namespace http://efcl.info/
// @include http://*?*
// @include http://*#*
// @include https://*?*
// @include https://*#*
// @require https://raw.githubusercontent.com/azu/ParamCleaner_GM/master/wedata.js
// @author azu
// @contributor Ussy <http://userscripts.org/scripts/show/70851>
// @homepage http://efcl.info/
// @run-at document-end
// @grant GM_registerMenuCommand
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_log
// @grant GM_xmlhttpRequest
// @noframes
// ==/UserScript==
(function (win) {
if (window.top != window.self) {
return;
}
const DATABASE_URL = [
"http://wedata.net/databases/UrlCleaner/items.json",
"https://raw.githubusercontent.com/azu/ParamCleaner_GM/master/master/data.json"
];
var database = new Wedata.Database(DATABASE_URL);
GM_registerMenuCommand("UrlCleaner - clear cache", function () {
database.clearCache();
location.reload();
});
var link = document.querySelector("link[rel=canonical]");
if (link && link.href == location.href) {
return;
}
const SITEINFO = [
];
function getParamsStr(url) {
var re = /[?#]([^#]+)/
var matched = url.match(re)
return matched ? matched[1] : null
}
function getParamsReplaceStr(url, str) {
var re = /[?#]([^#]+)/
return url.replace(re, str)
}
function getParams(url) {
var r = []
var paramsStr = getParamsStr(url)
if (paramsStr) {
paramsStr.split('&').forEach(function (i) {
r.push(i.split('='))
});
}
return r
}
function paramsJoin(params) {
return params.map(
function (i) {
return i.join('=')
}).join('&')
}
function removeUtmParams(url, data) {
/*
http://wedata.net/databases/UrlCleaner/items
live
URL に残しておきたいパラメーター名を指定します。マッチした場合は指定したパラメーター以外は削除します。
kill
URL から消し去りたいパラメーター名を指定します。マッチしなかったパラメーターは残ります。
live と kill を指定していた場合 live のほうが優先されます。
*/
var rescues = typeof data.live == "string" && data.live.split(" ");
var killers = typeof data.kill == "string" && data.kill.split(" ");
var params = getParams(url);
if (params.length == 0) {
return url
} else {
var filteredParams = [];
// liveなパラメーターの検査
if (rescues && rescues.length > 0 && rescues != "") {
// console.log(rescues + "<< live");
filteredParams = params.filter(function (val, index, array) {
var paramName = val[0];
// console.log(paramName + " << Name -live");
for (var i = 0, len = rescues.length; i < len; i++) {
// パラーメータ名とliveにするものが一致 -falseは省略
if (paramName === rescues[i]) {
return true;
}
}
});
}
// live合った場合はkillの処理はしない
if (filteredParams.length === 0) {
// killなパラメータの検査
if (killers && killers.length > 0 && killers != "") {
// killなパラメータの検査
filteredParams = params.filter(function (val, index, array) {
var paramName = val[0];
for (var i = 0, len = killers.length; i < len; i++) {
// console.log(paramName + " << Name -kill " + killers[i] + " - " + killers.length);
// パラーメータ名とkillが違うものは残る
if (paramName === killers[i]) {
return false;
}
}
return true; // 一個もマッチしなかったら残すパラメーター
});
}
}
// console.log(filteredParams + "<< filteredParams");
if (filteredParams.length == 0) {
return getParamsReplaceStr(url, '')
} else {
return getParamsReplaceStr(url, '?' + paramsJoin(filteredParams))
}
}
}
function tryReplaceState(data) {
var nURL = location.href;
if (!(new RegExp(data.url).test(nURL))) {
return;
}
var cleanURL = removeUtmParams(nURL, data);// paramを取り除く
if (nURL !== cleanURL) {
if (win.history) {
history && history.replaceState(null, document.title, cleanURL);
} else {
location.href = cleanURL;
}
}
}
// Main処理
SITEINFO && SITEINFO.length > 0 && SITEINFO.forEach(tryReplaceState);
database.get(function (items) {
items.forEach(function (item) {
tryReplaceState(item.data);
});
});
})(window || this);