@@ -10,7 +10,12 @@
// ==/UserScript==
(async () => {
- (await getDom(".MockButton.MockButton--tertiary.LeftnavListRow.LeftnavListRow--link")).click();
+ let doms = (await getDomAll(".MockButton.MockButton--tertiary.LeftnavListRow.LeftnavListRow--link"));
+ for (let dom of doms) {
+ if (dom.innerText.indexOf("more") > 0) {
+ dom.click();
+ }
addNewStyle('.pro.button--primary.small {display: none !important;}');
})();
@@ -69,3 +69,7 @@ function myCopy(inner_html) {
window.getSelection().removeAllRanges();
document.querySelector("#" + tmpId).remove();
}
+
+function log(obj) {
+ console.table(JSON.parse(JSON.stringify(obj)));
+}