Greasy Fork is available in English.

Guvercin yazdırma

Guvercin'de "Siparişi Yazdır" butonunun varsayılan olarak termal yazıcıya uygun hale gelmesini sağlar.

// ==UserScript==
// @run-at document-start
// @name         Guvercin yazdırma
// @namespace    http://grayburger.com/
// @version      0.1
// @description  Guvercin'de "Siparişi Yazdır" butonunun varsayılan olarak termal yazıcıya uygun hale gelmesini sağlar.
// @author       Osman Temiz
// @match        https://siparistakip.yemeksepeti.com/print.html*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var p= window.location.href.replace("AClass", "termal");
    window.location.replace(p);


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