Rock, Paper, Scissors Game
Play the classic game of Rock, Paper, Scissors against a javascript function!
Cos'è Rock, Paper, Scissors Game?
Rock, Paper, Scissors Game è un'estensione di Chrome sviluppata da alexdodd, e la sua funzione principale è "Play the classic game of Rock, Paper, Scissors against a javascript function!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Rock, Paper, Scissors Game
Scarica i file di estensione Rock, Paper, Scissors Game in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
A simple game of rock, paper, scissors. Meant as a project to see if I can make a chrome extension.
Informazioni di Base sull'Estensione
Nome | |
ID | kkkjkfpmmaegmmkmgjffeeocckaljgeb |
URL Ufficiale | https://chrome.google.com/webstore/detail/rock-paper-scissors-game/kkkjkfpmmaegmmkmgjffeeocckaljgeb |
Descrizione | Play the classic game of Rock, Paper, Scissors against a javascript function! |
Dimensione del File | 7.08 KB |
Conteggio Installazioni | 162 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2019-05-12 |
Data di Pubblicazione | 2019-05-12 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | alexdodd |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } } |