Code Jam Tasting

Google Code Jam のスコアボードにソースプレビューボタンを追加

What is Code Jam Tasting?

Code Jam Tasting is a Chrome extension developed by ororog, and its main feature is "Google Code Jam のスコアボードにソースプレビューボタンを追加".

Extension Screenshots

screenshot
screenshot

Download Code Jam Tasting Extension CRX File

Download Code Jam Tasting extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Google Code Jam のスコアボードに、ソースコードをプレビューするためのリンクを追加します。 
ダウンロード、解凍して開く操作が省略できるため、人のコードを見て勉強するのが素早く簡単になります。

Code Jam の統計サイト Code Jam Language Stats (https://www.go-hero.net/jam/) にも対応しています。

バグ等の報告は Twitter: @ororog にお願いします。

*** 注意 ***

アクティブコンテスト中に問題が発生しないことを確認していますが、コンテスト中は無効にしておくことを推奨します。

version 1.0.1 go-hero が https になったため修正                    

Extension Basic Information

Name Code Jam Tasting Code Jam Tasting
ID pbdfcihedkobpefmfiabcjfeodieeofh
Official URL https://chromewebstore.google.com/detail/code-jam-tasting/pbdfcihedkobpefmfiabcjfeodieeofh
Description Google Code Jam のスコアボードにソースプレビューボタンを追加
File Size 82.48 KB
Installation Count 22
Current Version 1.0.1
Last Updated 2016-04-10
Publish Date 2016-04-10
Rating 5.00/5 Total 2 Ratings
Developer ororog
Payment Type free
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Jam Tasting",
    "manifest_version": 2,
    "version": "1.0.1",
    "description": "Google Code Jam \u306e\u30b9\u30b3\u30a2\u30dc\u30fc\u30c9\u306b\u30bd\u30fc\u30b9\u30d7\u30ec\u30d3\u30e5\u30fc\u30dc\u30bf\u30f3\u3092\u8ffd\u52a0",
    "permissions": [
        "clipboardRead",
        "http:\/\/code.google.com\/"
    ],
    "background": {
        "scripts": [
            "BackgroundCopy.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/code.google.com\/codejam\/contest\/*\/scoreboard*",
                "https:\/\/www.go-hero.net\/jam\/*"
            ],
            "css": [
                "bootstrap.min.css",
                "prettify.css",
                "CodeJamTasting.css"
            ],
            "js": [
                "jquery.min.js",
                "prettify.js",
                "bootstrap.min.js",
                "jszip.min.js",
                "CodeJamTasting.js"
            ]
        }
    ]
}