Greasy Fork

Greasy Fork is available in English.

AcWing QuickAns

A simple script

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         AcWing QuickAns
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  A simple script
// @author       je5r1ta
// @license      MIT
// @match        https://www.acwing.com/activity/content/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=acwing.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $(document).ready(function() {
        $(".center-block").show();

        $(".punch-line").each(function() {
            // Get the URL of the problem from the href attribute of the first anchor tag within the div
            var problemURL = $(this).find("a:first").attr("href");
            // Create a new anchor tag with a button icon and the URL of the problem with a '?' appended to it
            var newButton = $("<a>").attr("href", problemURL + "?").attr("target", "_blank").addClass("btn btn-primary btn-xs").append($("<span>").addClass("glyphicon glyphicon-share-alt"));
            // Insert the new button after the first anchor tag within the div
            $(this).find("a:first").after(newButton);
        });
    });

    let url = window.location.href;
	if (url.includes("?")) {
		location.href = $(".label-info").get(0).href;
		return;
	}
})();