California Code Formatter
Reformats the California legal codes into something more readable.
什麼是California Code Formatter?
California Code Formatter是由Steven Chun開發的Chrome擴展程式,該擴展的主要功能是“Reformats the California legal codes into something more readable.”。
擴展截圖
下載California Code Formatter擴展crx文件
下載California Code Formatter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | |
ID | djhmfodgipaallojejdelhdjjeifjokg |
官方網址 | https://chromewebstore.google.com/detail/california-code-formatter/djhmfodgipaallojejdelhdjjeifjokg |
簡介 | Reformats the California legal codes into something more readable. |
檔案大小 | 21.58 KB |
安裝次數 | 427 |
目前版本 | 0.2.1 |
更新時間 | 2022-05-09 |
上架時間 | 2022-01-06 |
評分 | 5.00/5 共 3 次評分 |
開發者 | Steven Chun |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/stevenrchun/CalCodeFormatter |
隱私政策頁面URL | https://docs.google.com/document/d/e/2PACX-1vSs9j_8X5Mh0wBfiUgbRUtXNlUKQtTIBVK8ZNquvdMMWucuyBn7jIBAmmP3s41gEWuWQuctr_WaOwLv/pub |
支援的語言 | 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" ] } ] } |