Notion Helper

An extension to enhance your experience with Notion

O que é Notion Helper?

Notion Helper é uma extensão do Chrome desenvolvida por meshkani.mo, e sua principal característica é "An extension to enhance your experience with Notion".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Notion Helper

Baixe arquivos de extensão Notion Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Features:
- RTL
- Custom Font (Type in the name of the font you want. Make sure that the font is installed on your computer)

If you need any other features that are missing, let me know in the comments.                    

Informações Básicas da Extensão

Nome Notion Helper Notion Helper
ID jckgilkkfgibbeokglganbfdipcblibd
URL Oficial https://chromewebstore.google.com/detail/notion-helper/jckgilkkfgibbeokglganbfdipcblibd
Descrição An extension to enhance your experience with Notion
Tamanho do Arquivo 47.12 KB
Contagem de Instalações 2,208
Versão Atual 1.0.1
Última Atualização 2021-10-01
Data de Publicação 2021-09-23
Classificação 5.00/5 Total de 29 Avaliações
Desenvolvedor meshkani.mo
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Helper",
    "version": "1.0.1",
    "description": "An extension to enhance your experience with Notion",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "activeTab",
        "*:\/\/*.notion.so\/*",
        "*:\/\/*.notion.site\/*"
    ],
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_icon": {
            "32": "\/logo\/logo-32.png",
            "48": "\/logo\/logo-48.png",
            "128": "\/logo\/logo-128.png"
        }
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.notion.so\/*",
                "*:\/\/*.notion.site\/*"
            ],
            "js": [
                "src\/scripts\/rtl.js",
                "src\/scripts\/font.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "32": "\/logo\/logo-32.png",
        "48": "\/logo\/logo-48.png",
        "128": "\/logo\/logo-128.png"
    }
}