California Code Formatter
Reformats the California legal codes into something more readable.
California Code Formatter क्या है?
California Code Formatter Steven Chun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reformats the California legal codes into something more readable."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में California Code Formatter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक URL | 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" ] } ] } |