Chrome Quirks
A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!
Chrome Quirks là gì?
Chrome Quirks là một tiện ích mở rộng Chrome được phát triển bởi Paul Krishnamurthy, và tính năng chính của nó là "A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Chrome Quirks
Tải xuống các tệp mở rộng Chrome Quirks dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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*
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Chrome Quirks |
ID | bonaodplajkoeboaofhhjbigfhchpehc |
URL Chính Thức | https://chromewebstore.google.com/detail/chrome-quirks/bonaodplajkoeboaofhhjbigfhchpehc |
Mô tả | A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage! |
Kích Thước Tệp | 1.2 MB |
Số Lần Cài Đặt | 102 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2020-11-19 |
Ngày Phát Hành | 2015-05-21 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Paul Krishnamurthy |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://paulkr.com/ |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |