Notion Font Customizer

Customize font in Notion pages.

اعتبارا من 04-01-2019. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         Notion Font Customizer
// @namespace    http://tampermonkey.net/
// @version      0.1.1
// @description  Customize font in Notion pages.
// @author       MiracleXYZ
// @include      http*://www.notion.so/*
// @exclude      http*://www.notion.so/appcache2.html
// @require      http://libs.baidu.com/jquery/2.0.0/jquery.min.js
// ==/UserScript==


function changeStyle() {
    function pathToBlock (path) {
        pathList = path.split("-");
        realPath = pathList[pathList.length - 1];
        return [
            realPath.slice(0, 8),
            realPath.slice(8, 12),
            realPath.slice(12, 16),
            realPath.slice(16, 20),
            realPath.slice(20)
        ].join("-");
    }

    var blocks = [];

    var pathname = window.location.pathname;
    var path = pathname.split("/")[2];
    blocks.push(pathToBlock(path));

    var search = window.location.search;
    var params = search.slice(1).split("&");
    for (idx in params) {
        if (params[idx][0] == "p") {
            blocks.push(pathToBlock(params[idx].slice(2)));
        }
    };

    console.log(blocks);

    for (idx in blocks) {
        block = blocks[idx];
        $("div.notion-selectable[data-block-id='" + block + "']").css({
            "font-family": "Times New Roman, 宋体"
        });
        console.log("Font changed.");
    }

    $("div.notion-page-content").css({
        "font-size": "16px",
        "font-family": "Times New Roman, 宋体"
    });
}

// $(window).on("load", changeStyle);

$(document).keyup(function(e) {
    if(e.keyCode == 71 && e.ctrlKey && e.altKey){
        // alert("You pressed Ctrl + Alt + G!");
        changeStyle();
    }
});