This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// open edge://extensions/, turn on Developer mode. | |
// Tested in Microsoft Edge Version 85.0.545.0 (Official build) dev (64-bit) | |
document | |
.querySelectorAll("#extensions-list > div > div > div > div > div > div") | |
.forEach((item) => { | |
const id = item.querySelector("div > div > p > span").innerText; | |
const name = item.querySelector("div > div:nth-child(1) > p:nth-child(1)").innerText; | |
console.log(id, name) | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document regexp("https?://(?!(iamchucky.github.io/PttChrome)|(localhost)).*") { | |
/* Normal Font Weight */ | |
@font-face { | |
font-family: "Times New Roman"; | |
unicode-range: U+4E00-9FFF; | |
src: local(" "), local("Noto Sans CJK TC"); | |
} | |
@font-face { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* main section */ | |
.cGcGK, | |
section._1SP8R { | |
max-width: none !important; | |
} | |
.cGcGK > div:nth-child(2) > div:nth-child(1) { | |
display: flex !important; | |
flex-flow: row wrap !important; | |
justify-content: center !important; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Bahamut Old Search | |
// @namespace https://gist.github.com/anemology/8cffbd02adf603ce3aee4a1c7f781eaf | |
// @author 獨孤 | |
// @version 1 | |
// @description 巴哈舊搜尋,並可只搜尋一個字 | |
// @grant none | |
// @include https://forum.gamer.com.tw/* | |
// @run-at document-idle | |
// ==/UserScript== |