XNA Forum URL Redirect

Re-writes broken XNA article URLs

XNA Forum URL Redirect란 무엇입니까?

XNA Forum URL Redirect은(는) Nick Metnik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Re-writes broken XNA article URLs"입니다.

확장 프로그램 스크린샷

screenshot

XNA Forum URL Redirect 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ever since the Xbox/Windows Phone site split a ton of forum links take you to a landing page that makes you choose Windows Phone or Xbox.  The fun part is that regardless of what choice you make it doesn't take you to the article.  This extension runs in the background and gets you past the landing page to the actual article but only if the URL contains "http://forums.create.msdn.com/forums" OR "http://create.msdn.com/downloads".                    

확장 프로그램 기본 정보

이름 XNA Forum URL Redirect XNA Forum URL Redirect
ID hlggfgekghdckkoipnobdbpjflhcfaib
공식 URL https://chrome.google.com/webstore/detail/xna-forum-url-redirect/hlggfgekghdckkoipnobdbpjflhcfaib
설명 Re-writes broken XNA article URLs
파일 크기 90.6 KB
설치 횟수 11
현재 버전 1.2
최근 업데이트 2012-12-01
출시 날짜 2012-12-01
평점 5.00/5 총 1 개의 평점
개발자 Nick Metnik
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "XNA Forum URL Redirect",
    "version": "1.2",
    "description": "Re-writes broken XNA article URLs",
    "background": {
        "page": "background.html"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png",
        "256": "256.png"
    },
    "permissions": [
        "tabs"
    ],
    "author": {
        "name": "Nick Metnik",
        "email": "[email protected]"
    }
}