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ファイルをダウンロード

XNA Forum URL Redirect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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]"
    }
}