Canvas Themeinator
Gives Canvas more themes
Apa itu Canvas Themeinator?
Canvas Themeinator adalah ekstensi Chrome yang dikembangkan oleh one23four56, dan fitur utamanya adalah "Gives Canvas more themes".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Canvas Themeinator
Unduh file ekstensi Canvas Themeinator 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
This extension adds themes to Canvas. Currently, there are 10: -Dark -AMOLED Dark -Light -Aqua -Purple -Dark Purple -Blue -Dark Blue -Green -Orange +Custom Themes (currently in beta) This extension is open-source. The GitHub link is below: https://github.com/one23four56/canvas-themeinator This extension is a SIDE PROJECT of mine. Do not expect regular updates, I am only maintaining this because I use it. If you really want a feature, go onto GitHub and add it yourself.
Informasi Dasar Ekstensi
Nama | Canvas Themeinator |
ID | ffhddhjbbaocbeejjijfioimiplpfgbb |
URL Resmi | https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb |
Deskripsi | Gives Canvas more themes |
Ukuran File | 25.61 KB |
Jumlah Instalasi | 299 |
Versi Saat Ini | 1.5.1 |
Terakhir Diperbarui | 2021-04-17 |
Tanggal Publikasi | 2021-04-12 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | one23four56 |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/one23four56/canvas-themeinator |
URL Halaman Kebijakan Privasi | https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Canvas Themeinator", "version": "1.5.1", "description": "Gives Canvas more themes", "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/*" ], "css": [ "style.css" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "storage" ], "action": { "default_title": "Choose Theme", "default_popup": "html\/index.html" }, "icons": { "32": "icon.png" } } |