2013-12-24 06:32:55 -08:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
function parseQueryString() {
|
|
|
|
let url = document.documentURI;
|
|
|
|
let queryString = url.replace(/^about:tabcrashed?e=tabcrashed/, "");
|
|
|
|
|
|
|
|
let titleMatch = queryString.match(/d=([^&]*)/);
|
2014-05-29 12:55:44 -07:00
|
|
|
return titleMatch && titleMatch[1] ? decodeURIComponent(titleMatch[1]) : "";
|
2013-12-24 06:32:55 -08:00
|
|
|
}
|
|
|
|
|
2014-05-29 12:55:44 -07:00
|
|
|
document.title = parseQueryString();
|