Chrome Quirks
A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!
O que é Chrome Quirks?
Chrome Quirks é uma extensão do Chrome desenvolvida por Paul Krishnamurthy, e sua principal característica é "A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Chrome Quirks
Baixe arquivos de extensão Chrome Quirks no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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*
Informações Básicas da Extensão
Nome | Chrome Quirks |
ID | bonaodplajkoeboaofhhjbigfhchpehc |
URL Oficial | https://chromewebstore.google.com/detail/chrome-quirks/bonaodplajkoeboaofhhjbigfhchpehc |
Descrição | A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage! |
Tamanho do Arquivo | 1.2 MB |
Contagem de Instalações | 102 |
Versão Atual | 1.2 |
Última Atualização | 2020-11-19 |
Data de Publicação | 2015-05-21 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | Paul Krishnamurthy |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://paulkr.com/ |
Idiomas Suportados | 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'" } |