您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Show the rating as text above the stars in Google Play app listings
当前为
// ==UserScript== // @name G-play show rating // @description Show the rating as text above the stars in Google Play app listings // @version 1.0.0 // @author wOxxOm // @namespace wOxxOm.scripts // @license MIT License // @match https://play.google.com/* // @run-at document-start // @grant GM_addStyle // @require https://greasyfork.org/scripts/12228/code/setMutationHandler.js // ==/UserScript== GM_addStyle('.tiny-star span.wxRating { position: absolute; top: -2ex; }'); setMutationHandler('.tiny-star', stars => { stars.forEach(star => { if (!star.querySelector('.wxRating')) { star.insertAdjacentHTML('beforeend', '<span class="wxRating">' + star.getAttribute('aria-label').match(/\d\.\d/)[0] + '</span>'); } }); });