GitHub Stars Astralapp

方便展示astralapp的笔记

目前為 2020-11-04 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         GitHub Stars Astralapp
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  方便展示astralapp的笔记
// @author       You
// @match        https://app.astralapp.com/dashboard
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
 const $ = function (query) {
  return document.querySelector(query)
}
const $All = function (query) {
  return document.querySelectorAll(query)
}

const addStyle = function (cssText) {
  const head = $('head')
  const styleTag = document.createElement('style')
  const cssTextNode = document.createTextNode(cssText)
  styleTag.appendChild(cssTextNode)
  head.appendChild(styleTag)
}


const cssText = '.CodeMirror-scroll{\n' +
  '  min-height: 50px!important;\n' +
  '  height: 50px!important;\n' +
  '}\n' +
  '\n' +
  '.star-info .bg-white.pin-b{\n' +
  '  bottom: unset;\n' +
  '}\n' +
  '.CodeMirror-wrap{\n' +
  '  box-shadow: 0 3px #ccc;\n' +
  '}\n' +
  '.repo-readme{\n' +
  '  margin-top: 120px;\n' +
  '}'


addStyle(cssText)


let isShow = false
setTimeout(() => {
  $('.collection-cluster').addEventListener("click", () => {
    if (!isShow) {
      setTimeout(() => {
        $('.tracking-wide').click()
        isShow = true
      }, 500)
    }

  })
}, 1000)


    // Your code here...
})();