Github Jupyter diff viewer

Diff viewer for jupyter file(*.ipynb) in Github

ما هو Github Jupyter diff viewer؟

Github Jupyter diff viewer هو إضافة Chrome تم تطويرها بواسطة https://banatech.net، والميزة الرئيسية لها هي "Diff viewer for jupyter file(*.ipynb) in Github".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Github Jupyter diff viewer

قم بتنزيل ملفات الامتداد Github Jupyter diff viewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Show only diff of source code(python and markdown) when you watch file changed in pull request or commit.
You must enter a Github personal access token in the options if you want to use it in a private repository.
プルリクエストまたはコミットでファイルの変更を閲覧するときに,ソースコードの差分のみを表示します(python と markdown).
プライベートレポジトリで使用する場合はオプションでGithubのパーソナルアクセストークンを入力する必要があります.                    

معلومات أساسية عن التمديد

الاسم Github Jupyter diff viewer Github Jupyter diff viewer
ID bhncfkebhcnjhjpagogngbcdbapjdiej
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-jupyter-diff-viewe/bhncfkebhcnjhjpagogngbcdbapjdiej
الوصف Diff viewer for jupyter file(*.ipynb) in Github
حجم الملف 12.39 KB
عدد التثبيتات 52
النسخة الحالية 0.0.8
آخر تحديث 2022-04-20
تاريخ النشر 2020-07-26
المطور https://banatech.net
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/bana118/github-jupyter-diff-viewer
عنوان صفحة سياسة الخصوصية https://bana118.github.io/html/chrome-extensions-privacy-policy
اللغات المدعومة ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Jupyter diff viewer",
    "version": "0.0.8",
    "manifest_version": 2,
    "description": "Diff viewer for jupyter file(*.ipynb) in Github",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/icon128.png",
        "48": "icons\/icon128.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "css\/loader.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}