MCP SRG Mapper

Applies MCP mappings to SRG named code snippets on github repos and paste services.

MCP SRG Mapper란 무엇입니까?

MCP SRG Mapper은(는) briefcase.speakers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Applies MCP mappings to SRG named code snippets on github repos and paste services."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

MCP SRG Mapper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is used to rename SRG-named code elements found on certain github repositories (currently only the MinecraftForge and FML repos, this will be configurable in the future) and pastebin sites. This is relevant to Minecraft modders using MinecraftForge or the MCP project to create mods and who find themselves browsing code on github (and other sites) that contains SRG-named identifiers as in the Before example below. 

Before:
return super.func_149742_c(p_149742_1_, p_149742_2_, p_149742_3_, p_149742_4_) && this.func_149854_a(p_149742_1_.func_147439_a(p_149742_2_, p_149742_3_ - 1, p_149742_4_));

After Remapping:
return super.canPlaceBlockAt(worldIn, x, y, z) && this.canPlaceBlockOn(worldIn.getBlock(x, y - 1, z));

Supported websites:
- github.com (MinecraftForge and FML projects)
- gist.github.com
- pastebin.com
- paste.feed-the-beast.com
- openeye.openmods.info
- paste.kde.org


Change log:
0.2.3 - 26-Apr-2017
- merged PR from TomyLobo/fix-gist-pastebin

0.2.2 - 10-Mar-2015
- fixed anonymous paste.kde.org support
- applied Chosen to mappings list for search support

0.2.1 - 10-Mar-2015
- added versions json support (courtesy of Lunatrius)
- Added gist support. Closes #4 (courtesy of Lunatrius)
- Added paste.kde.org support. Closes #10 (courtesy of Lunatrius)
- Added paste.feed-the-beast.com support. Closes #12 (courtesy of Lunatrius)
- Added openeye.openmods.info support. (courtesy of Lunatrius)
- spam clicking the remap/reset button will no longer mess up the page

0.1.2 - 15-Dec-2014
- fixed drop-down list of previously entered values not being shown
- added a reset button for github to revert back to SRG names

0.1.1 - 13-Dec-2014
- initial release                    

확장 프로그램 기본 정보

이름 MCP SRG Mapper MCP SRG Mapper
ID ijjbogjfmngomjdmnabifgckbonmcebh
공식 URL https://chromewebstore.google.com/detail/mcp-srg-mapper/ijjbogjfmngomjdmnabifgckbonmcebh
설명 Applies MCP mappings to SRG named code snippets on github repos and paste services.
파일 크기 115 KB
설치 횟수 112
현재 버전 0.2.3
최근 업데이트 2017-04-26
출시 날짜 2017-04-25
평점 4.55/5 총 11 개의 평점
개발자 briefcase.speakers
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/bspkrs/MCP-SRG-Mapper
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MCP SRG Mapper",
    "version": "0.2.3",
    "author": "bspkrs, Lunatrius",
    "manifest_version": 2,
    "description": "Applies MCP mappings to SRG named code snippets on github repos and paste services.",
    "homepage_url": "https:\/\/github.com\/bspkrs\/MCP-SRG-Mapper",
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "storage",
        "unlimitedStorage",
        "http:\/\/files.minecraftforge.net\/maven\/de\/oceanlabs\/mcp\/*",
        "http:\/\/export.mcpbot.bspk.rs\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/MinecraftForge\/*",
                "https:\/\/github.com\/*\/FML\/*",
                "https:\/\/gist.github.com\/*",
                "https:\/\/paste.feed-the-beast.com\/view\/*",
                "http:\/\/paste.feed-the-beast.com\/view\/*",
                "http:\/\/openeye.openmods.info\/crashes\/*",
                "https:\/\/openeye.openmods.info\/crashes\/*",
                "https:\/\/paste.kde.org\/*",
                "http:\/\/paste.kde.org\/*",
                "https:\/\/pastebin.com\/*",
                "http:\/\/pastebin.com\/*",
                "https:\/\/paste.ee\/p\/*",
                "http:\/\/paste.ee\/p\/*",
                "http:\/\/pastie.org\/*"
            ],
            "css": [
                "css\/toastr.min.css",
                "css\/chosen.min.css"
            ],
            "js": [
                "js\/jquery-2.1.1.min.js",
                "js\/chosen.jquery.min.js",
                "js\/toastr.min.js",
                "src\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*.png"
    ],
    "background": {
        "scripts": [
            "js\/jszip.min.js",
            "src\/background.js"
        ],
        "persistent": false
    }
}