Rock, Paper, Scissors Game
Play the classic game of Rock, Paper, Scissors against a javascript function!
Apa itu Rock, Paper, Scissors Game?
Rock, Paper, Scissors Game adalah ekstensi Chrome yang dikembangkan oleh alexdodd, dan fitur utamanya adalah "Play the classic game of Rock, Paper, Scissors against a javascript function!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Rock, Paper, Scissors Game
Unduh file ekstensi Rock, Paper, Scissors Game dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
A simple game of rock, paper, scissors. Meant as a project to see if I can make a chrome extension.
Informasi Dasar Ekstensi
Nama | |
ID | kkkjkfpmmaegmmkmgjffeeocckaljgeb |
URL Resmi | https://chrome.google.com/webstore/detail/rock-paper-scissors-game/kkkjkfpmmaegmmkmgjffeeocckaljgeb |
Deskripsi | Play the classic game of Rock, Paper, Scissors against a javascript function! |
Ukuran File | 7.08 KB |
Jumlah Instalasi | 162 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2019-05-12 |
Tanggal Publikasi | 2019-05-12 |
Penilaian | 4.00/5 Total 1 Penilaian |
Pengembang | alexdodd |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } } |