Chrome Quirks
A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!
Apa itu Chrome Quirks?
Chrome Quirks adalah ekstensi Chrome yang dikembangkan oleh Paul Krishnamurthy, dan fitur utamanya adalah "A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Chrome Quirks
Unduh file ekstensi Chrome Quirks 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
Chrome Quirks is a fun extension that allows you to inject pre-loaded effects or custom CSS onto any webpage you visit. Developers can quickly and easily edit CSS and test ideas out. This extension appeals to the curious and the pranksters who can't help messing with their less tech-savvy friends! Feel free to kindly leave some ideas for more pre-loaded effects and improvements along with a good rating! Enjoy this app and share it with your friends! *Special thanks to Alex Xie for screenshots*
Informasi Dasar Ekstensi
Nama | Chrome Quirks |
ID | bonaodplajkoeboaofhhjbigfhchpehc |
URL Resmi | https://chromewebstore.google.com/detail/chrome-quirks/bonaodplajkoeboaofhhjbigfhchpehc |
Deskripsi | A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage! |
Ukuran File | 1.2 MB |
Jumlah Instalasi | 102 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2020-11-19 |
Tanggal Publikasi | 2015-05-21 |
Penilaian | 5.00/5 Total 5 Penilaian |
Pengembang | Paul Krishnamurthy |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | http://paulkr.com/ |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome Quirks", "short_name": "CQ", "manifest_version": 2, "version": "1.2", "description": "A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!", "homepage_url": "http:\/\/paulkr.com\/", "icons": { "256": "icons\/icon256.png" }, "background": { "scripts": [ "jquery.js", "inject.js" ], "persistance": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.js" ] } ], "browser_action": { "default_icon": "icons\/icon.png", "default_title": "Chrome Quirks", "default_popup": "popup.html" }, "permissions": [ "activeTab", "http:\/\/*\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |