2010-12-29 7 views
0

私はNetflix Queue sorterを拡張機能としてインストールしています。しかし、ジャンル内のムービーにはランダムにオーダーが割り当てられます。ジャンル内で名前順に並べ替えたいNetfix QueueSorter(chrome) - グループをアルファベット順に並べ替えるスクリプトのヘルプ

私はC:¥Users¥MyUserName¥AppData¥Local¥Google¥Chrome¥User Data¥Default¥Extensions¥ExtensionId¥1.13_0¥script.jsを開き、JavaScriptがまだまだ作業が必要であることがわかります。タイトルとジャンルで並べ替える私の修正されたメソッドはここにあります。

function sortByTitleAndGenre() { 
    var articles; 
    sortInfo = []; 
    var pos = 1; 

    var articlesKey = 'sortByTitle.articles'; 
    var ignoreArticlesKey = 'sortByTitle.ignoreArticles'; 
    var ignoreArticles = GM_getValue(ignoreArticlesKey); 
    if (undefined === ignoreArticles) { 
     // Use true as default as Netflix ignores articles too. 
     ignoreArticles = true; 

     // Store keys so that users can change it via about:config. 
     GM_setValue(ignoreArticlesKey, ignoreArticles); 
     // The articles are used "as-is", so there must be a space after 
     // each one in most cases. To avoid typos in the default, use []. 
     articles = [ 
      "A ", 
      "AN ", 
      "THE ", 
      "EL ", 
      "LA ", 
      "LE ", 
      "LES ", 
      "IL ", 
      "L'" 
     ]; 
     GM_setValue(articlesKey, articles.join(',').toUpperCase()); 
    } 

    var elts = customGetElementsByClassName(document, 'input', 'o'); 
    for (var idx = 0; idx < elts.length; idx++) { 
     var boxName = elts[idx].name; 
     var boxId = boxName.substring(2); 
     // If a movie is both at home and in the queue, or a movie has been 
     // watched but is still in the queue, there is both _0 and _1. 
     // Here we either one works. 
     var titleId = 'b0' + boxId + '_0'; 
     var titleElt = document.getElementById(titleId); 

     var genre = $("tr[data-mid='" + boxId + "'] .gn .genre").text().toUpperCase(); 

     var title = titleElt.innerHTML.toUpperCase(); 
     if (ignoreArticles) { 
      // Get the articles, but default to empty string. 
      var articlesStr = GM_getValue(articlesKey, '') || ''; 
      articlesStr = articlesStr.toUpperCase(); 
      articles = articlesStr.split(','); 
      for (var aa = 0; aa < articles.length; aa++) { 
       var article = articles[aa].toUpperCase(); 
       if (0 === title.indexOf(article)) { 
        // Move article to the end of the string. 
        title = title.substring(article.length) + 
          ', ' + article; 
        break; 
       } 
      } 
     } 

     var record = { 
      "id": boxId, 
      "title": title, 
      "genre": genre, 
      "origPos": pos++ 
     }; 
     sortInfo.push(record); 
    } 

    var sortFn = function (a, b) { 
     if (a.genre == b.genre) 
      return a.title > b.title ? -1 : 1; 
     else 
      return a.genre > b.genre ? -1 : 1; 
    }; 
    sortInfo.sort(sortFn); 

    setOrder("origPos", elts); 
} 

私の問題は、整理している間は記事を無視していないということです。私のソート機能はオフですか?より簡潔に(1行で)定義できると思います。

var sortFn = function (a, b) { 
     if (a.genre == b.genre) 
      return a.title > b.title ? -1 : 1; 
     else 
      return a.genre > b.genre ? -1 : 1; 
    }; 

答えて

0

私はそれを理解しました。 articles配列を空に設定するためにコードが構築されました。それは小さなWTFですが、私はいくつかのコメント行でそれを修正しました。

//var articlesStr = GM_getValue(articlesKey, '') || ''; 
//articlesStr = articlesStr.toUpperCase(); 
//articles = articlesStr.split(','); 

この拡張子を使用するユーザーは、jqueryライブラリを拡張子に追加して修正しました。 manifest.jsonにそのリファレンスを追加しました。

あなたはクロームで開発者モードに入ると、どちらかそれは開梱ロードまたはCRXとしてそれをパック、クロム内のファイルにナビゲートすることができません一度それからちょうどこの方法

function sortByGenre() { 
    var articles; 
    sortInfo = []; 
    var pos = 1; 

    var articlesKey = 'sortByTitle.articles'; 
    var ignoreArticlesKey = 'sortByTitle.ignoreArticles'; 
    var ignoreArticles = GM_getValue(ignoreArticlesKey); 
    if (undefined === ignoreArticles) { 
     // Use true as default as Netflix ignores articles too. 
     ignoreArticles = true; 

     // Store keys so that users can change it via about:config. 
     GM_setValue(ignoreArticlesKey, ignoreArticles); 
     // The articles are used "as-is", so there must be a space after 
     // each one in most cases. To avoid typos in the default, use []. 
     articles = [ 
      "A ", 
      "AN ", 
      "THE ", 
      "EL ", 
      "LA ", 
      "LE ", 
      "LES ", 
      "IL ", 
      "L'" 
     ]; 
     //GM_setValue(articlesKey, articles.join(',').toUpperCase()); 
    } 

    var elts = customGetElementsByClassName(document, 'input', 'o'); 
    for (var idx = 0; idx < elts.length; idx++) { 
     var boxName = elts[idx].name; 
     var boxId = boxName.substring(2); 
     // If a movie is both at home and in the queue, or a movie has been 
     // watched but is still in the queue, there is both _0 and _1. 
     // Here we either one works. 
     var titleId = 'b0' + boxId + '_0'; 
     var titleElt = document.getElementById(titleId); 

     var genre = $("tr[data-mid='" + boxId + "'] .gn .genre").text().toUpperCase(); 

     var title = titleElt.innerHTML.toUpperCase(); 
     if (ignoreArticles) { 
      // Get the articles, but default to empty string. 
      //var articlesStr = GM_getValue(articlesKey, '') || ''; 
      //articlesStr = articlesStr.toUpperCase(); 
      //articles = articlesStr.split(','); 
      for (var aa = 0; aa < articles.length; aa++) { 
       var article = articles[aa].toUpperCase(); 
       if (0 === title.indexOf(article)) { 
        // Move article to the end of the string. 
        title = title.substring(article.length) + 
          ', ' + article; 
        break; 
       } 
      } 
     } 

     var record = { 
      "id": boxId, 
      "title": title, 
      "genre": genre, 
      "origPos": pos++ 
     }; 
     sortInfo.push(record); 
    } 

    var sortFn = function (a, b) { 
     if (a.genre == b.genre) 
      return a.title > b.title ? -1 : 1; 
     else 
      return a.genre > b.genre ? -1 : 1; 
    }; 
    sortInfo.sort(sortFn); 

    setOrder("origPos", elts); 
} 

で既存のsortByGenreを置き換えます、拡張機能をインストールします。

関連する問題