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