Diff Navigator for GitHub

GitHub Diff Navigator allows you to easily navigate through the changes in a file that has been edited on GitHub.

Diff Navigator for GitHub란 무엇입니까?

Diff Navigator for GitHub은(는) https://deanattali.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "GitHub Diff Navigator allows you to easily navigate through the changes in a file that has been edited on GitHub."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Diff Navigator for GitHub 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Code available at: https://github.com/daattali/github-diff-navigator-extension/

Description
=========

This is a Chrome extension that allows you to easily navigate through the changes in a file that has been edited on GitHub.

You may have noticed that after editing a file through GitHub and previewing your changes, there is no easy way to navigate through the changes in a nice "next/previous change" manner. Most file formats only show the lines that were changed and several surrounding lines, so it's usually not a terrible inconvenience, but for any markdown document (.md) the situation is different. GitHub shows the entire markdown document when previewing the changes made, which means that if you're making a few tiny edits to a large document, it's very hard to find those edits and see what's changed. Rmarkdown (.Rmd) documents behave similarly, and potentially other markdown-type documents as well.

Enter: GitHub Diff Navigator.


Motivation
=========

The idea for this extension came when I was reading through Hadley Wickham's Advanced R book. Every time I found a few typos in a chapter (which is a single markdown document), I would edit it on GitHub and make a pull request.  
To make sure I didn't make an idiot out of myself, I wanted to double-check my edits in the Preview tab, but I noticed the problem described above. I didn't trust my eyes in finding the few edits in such large files, and I ended up using the DOM + JavaScript console to help me find where the edits were.  
Then I decided that playing in the JavaScript console wasn't hardcore enough and I decided to spend the next two days making an extension that will help me find such changes quickly in the future.  


Features
=========

- GitHub Diff Navigator is non-intrusive and will only show up when looking at the Preview of edits made on a file using GitHub.  
- GitHub Diff Navigator will not take up any resources or show up in Chrome's Task Manager when you don't have a valid GitHub edited page open.  
- Works with multiple GitHub tabs that are open simultaneously (every time you switch tabs, the extension will update to show you the edits in that tab).  
- Automatically detect whether the file being edited is markdown-type or not, and seamlessly works for both.  
- Clean and intuitive UI with helpful messages shown when no edits are found.  


Disclaimer
=========

I would not advise using my code as a template or resource for learning how to write Chrome extensions. I learned how to write the extension and fully built it within two days, so I'm not sure what the best practices are and how to properly organize the code. It was just an excuse to test out how Chrome extensions work. I also left a little bit of ugly code in there -- please dont judge :)                    

확장 프로그램 기본 정보

이름 Diff Navigator for GitHub Diff Navigator for GitHub
ID aoojogkiedabnddmokieplfnmjehlneo
공식 URL https://chromewebstore.google.com/detail/diff-navigator-for-github/aoojogkiedabnddmokieplfnmjehlneo
설명 GitHub Diff Navigator allows you to easily navigate through the changes in a file that has been edited on GitHub.
파일 크기 43.72 KB
설치 횟수 211
현재 버전 1.0
최근 업데이트 2023-04-28
출시 날짜 2018-09-07
평점 5.00/5 총 3 개의 평점
개발자 https://deanattali.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/daattali/github-diff-navigator-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Diff Navigator for GitHub",
    "version": "1.0",
    "manifest_version": 2,
    "description": "GitHub Diff Navigator allows you to easily navigate through the changes in a file that has been edited on GitHub.",
    "page_action": {
        "default_title": "Diff Navigator for GitHub",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent"
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/edit\/*",
                "http:\/\/github.com\/*\/edit\/*"
            ],
            "js": [
                "js\/githubDiffNav.js"
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/daattali\/github-diff-navigator-extension"
}