Rock, Paper, Scissors Game
Play the classic game of Rock, Paper, Scissors against a javascript function!
Wat is Rock, Paper, Scissors Game?
Rock, Paper, Scissors Game is een Chrome-extensie ontwikkeld door alexdodd, en de belangrijkste functie is "Play the classic game of Rock, Paper, Scissors against a javascript function!".
Extensie Screenshots
Download het CRX-bestand van de extensie Rock, Paper, Scissors Game
Download Rock, Paper, Scissors Game-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
A simple game of rock, paper, scissors. Meant as a project to see if I can make a chrome extension.
Basisinformatie over de Extensie
Naam | |
ID | kkkjkfpmmaegmmkmgjffeeocckaljgeb |
Officiële URL | https://chrome.google.com/webstore/detail/rock-paper-scissors-game/kkkjkfpmmaegmmkmgjffeeocckaljgeb |
Beschrijving | Play the classic game of Rock, Paper, Scissors against a javascript function! |
Bestandsgrootte | 7.08 KB |
Aantal Installaties | 162 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2019-05-12 |
Publicatiedatum | 2019-05-12 |
Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | alexdodd |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } } |