08/10/13 14:55:08 2TomfghI0
>>852
chrome\browser.jar\content\browser\places\editBookmarkOverlay.js内の
_initNamePickerメソッド内を以下のようにコメントアウトすればいい。
var itemToSelect = userEnteredNameField;
/*
try {
if (this._itemId != -1 &&
this._itemType == Ci.nsINavBookmarksService.TYPE_BOOKMARK &&
!this._readOnly){
this._microsummaries = PlacesUIUtils.microsummaries
.getMicrosummaries(this._uri, -1);
}
catch(ex) {
// getMicrosummaries will throw an exception in at least two cases:
// 1. the bookmarked URI contains a scheme that the service won't
// download for security reasons (currently it only handles http,
// https, and file);
// 2. the page to which the URI refers isn't HTML or XML (the only two
// content types the service knows how to summarize).
this._microsummaries = null;
}
*/
if (this._microsummaries) {
var enumerator = this._microsummaries.Enumerate();