Rock, Paper, Scissors Game
Play the classic game of Rock, Paper, Scissors against a javascript function!
What is Rock, Paper, Scissors Game?
Rock, Paper, Scissors Game is a Chrome extension developed by alexdodd, and its main feature is "Play the classic game of Rock, Paper, Scissors against a javascript function!".
Extension Screenshots
Download Rock, Paper, Scissors Game Extension CRX File
Download Rock, Paper, Scissors Game 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
A simple game of rock, paper, scissors. Meant as a project to see if I can make a chrome extension.
Extension Basic Information
Name | |
ID | kkkjkfpmmaegmmkmgjffeeocckaljgeb |
Official URL | https://chrome.google.com/webstore/detail/rock-paper-scissors-game/kkkjkfpmmaegmmkmgjffeeocckaljgeb |
Description | Play the classic game of Rock, Paper, Scissors against a javascript function! |
File Size | 7.08 KB |
Installation Count | 162 |
Current Version | 1.2 |
Last Updated | 2019-05-12 |
Publish Date | 2019-05-12 |
Rating | 4.00/5 Total 1 Ratings |
Developer | alexdodd |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } } |