Export/Import Filter List

Export and import filter list

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Export/Import Filter List
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Export and import filter list
// @author       Eleven
// @match        https://www.phind.com/filters
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_registerMenuCommand
// @license MIT
// ==/UserScript==

let table = document.querySelector("table");

let listToExport = Array.from(table.rows).map((row) =>
  Array.from(row.cells).map((cell) => cell.textContent)
);
GM_setValue("exportedList", JSON.stringify(listToExport));

let importedList = JSON.parse(GM_getValue("exportedList"));


importedList.forEach((rowData) => {
  let row = table.insertRow();
  rowData.forEach((cellData) => {
    let cell = row.insertCell();
    cell.textContent = cellData;
  });
});

GM_registerMenuCommand("Export List", () => {
  let table = document.querySelector("table");
  let listToExport = Array.from(table.rows).map((row) =>
    Array.from(row.cells).map((cell) => cell.textContent)
  );
  GM_setValue("exportedList", JSON.stringify(listToExport));
});

GM_registerMenuCommand("Import List", () => {
  let importedList = JSON.parse(GM_getValue("exportedList"));
  let table = document.querySelector("table");
  importedList.forEach((rowData) => {
    let row = table.insertRow();
    rowData.forEach((cellData) => {
      let cell = row.insertCell();
      cell.textContent = cellData;
    });
  });
});