California Code Formatter
Reformats the California legal codes into something more readable.
California Code Formatter là gì?
California Code Formatter là một tiện ích mở rộng Chrome được phát triển bởi Steven Chun, và tính năng chính của nó là "Reformats the California legal codes into something more readable.".
Ả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 California Code Formatter
Tải xuống các tệp mở rộng California Code Formatter 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
The official California legal code website (https://leginfo.legislature.ca.gov/faces/codes.xhtml) is difficult to read because of its extensive use of structured headings and disdain for indentation. This extension applies reasonable levels of indentation for each heading type in order to make the codes more readable. Due to indeterminate cases and inconsistencies in the heading system used by the California legal code, the formatter will not be 100% correct. However, in most cases, the indentation will reflect the intended structure of the law. An in-depth explanation of the formatting logic, as well as the open-source code, can be found at https://github.com/stevenrchun/CalCodeFormatter
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | djhmfodgipaallojejdelhdjjeifjokg |
URL Chính Thức | https://chromewebstore.google.com/detail/california-code-formatter/djhmfodgipaallojejdelhdjjeifjokg |
Mô tả | Reformats the California legal codes into something more readable. |
Kích Thước Tệp | 21.58 KB |
Số Lần Cài Đặt | 427 |
Phiên Bản Hiện Tại | 0.2.1 |
Cập Nhật Lần Cuối | 2022-05-09 |
Ngày Phát Hành | 2022-01-06 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Steven Chun |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/stevenrchun/CalCodeFormatter |
URL Trang Chính Sách Bảo Mật | https://docs.google.com/document/d/e/2PACX-1vSs9j_8X5Mh0wBfiUgbRUtXNlUKQtTIBVK8ZNquvdMMWucuyBn7jIBAmmP3s41gEWuWQuctr_WaOwLv/pub |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "California Code Formatter", "description": "Reformats the California legal codes into something more readable.", "version": "0.2.1", "manifest_version": 3, "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "128": "\/icon128.png" } }, "icons": { "128": "\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/leginfo.legislature.ca.gov\/faces\/codes_displayText*", "https:\/\/leginfo.legislature.ca.gov\/faces\/codes_displaySection*", "https:\/\/leginfo.legislature.ca.gov\/faces\/billNavClient.xhtml*" ], "css": [ "reformat.css" ], "js": [ "reformat.js" ] } ] } |