Rock, Paper, Scissors Game
Play the classic game of Rock, Paper, Scissors against a javascript function!
Rock, Paper, Scissors Gameとは何ですか?
Rock, Paper, Scissors Gameはalexdoddによって開発されたChromeの拡張機能で、その主な機能は「Play the classic game of Rock, Paper, Scissors against a javascript function!」です。
拡張機能のスクリーンショット
Rock, Paper, Scissors Game拡張機能のCRXファイルをダウンロード
Rock, Paper, Scissors Game拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A simple game of rock, paper, scissors. Meant as a project to see if I can make a chrome extension.
拡張機能の基本情報
名前 | |
ID | kkkjkfpmmaegmmkmgjffeeocckaljgeb |
公式URL | https://chrome.google.com/webstore/detail/rock-paper-scissors-game/kkkjkfpmmaegmmkmgjffeeocckaljgeb |
説明 | Play the classic game of Rock, Paper, Scissors against a javascript function! |
ファイルサイズ | 7.08 KB |
インストール数 | 162 |
現在のバージョン | 1.2 |
最終更新日 | 2019-05-12 |
公開日 | 2019-05-12 |
評価 | 4.00/5 合計 1 レビュー |
開発者 | alexdodd |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Rock, Paper, Scissors Game", "short_name": "RPSGame", "description": "Play the classic game of Rock, Paper, Scissors against a javascript function!", "version": "1.2", "browser_action": { "default_icon": ".\/assets\/hand.png" }, "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false } } |