Auxtract

Extracts relevant definitions and cross-references as you review Commonwealth legislation on the Federal Register (Australia only).

¿Qué es Auxtract?

Auxtract es una extensión de Chrome desarrollada por Raymond Sun, y su función principal es "Extracts relevant definitions and cross-references as you review Commonwealth legislation on the Federal Register (Australia only).".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Auxtract

Descarga archivos de extensión Auxtract en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        WHAT IS AUXTRACT?
Auxtract is a Chrome Extension that modifies the webpage look of the Federal Register of Legislation website (https://www.legislation.gov.au/) to improve your reading experience of Commonwealth legislation. Auxtract allows you to read a clause of the legislation and its relevant definitions and cross-references in a side-by-side view. This saves you from having to scroll or click through different places of the legislation while also sticking to the official source of legislation!

Highly recommended for Australian lawyers, law academics and law students.

Auxtract is only available for Australian users and on Google Chrome.

HOW DO I USE AUXTRACT?
Once installed onto your Google Chome Browser, click on the Auxtract extension icon to activate Auxtract. If it is you are a first time user, you may trial Auxtract FREE for 2 days. After the trial period, to continue using Auxtract, you will be prompted to pay a one-time fee via Stripe. 

Auxtract will automatically launch whenever you open the page of a Commonwealth legislation on the Federal Register Website. If the Commonwealth legislation has proper formatting, Auxtract will create a menu above the contents table and convert the copy of the Commonwealth legislation into an interactive document with clickable clauses. You can then click on a clause either in the contents table or on the copy of the Commonwealth legislation, and navigate through the tabs on the Auxtract menu to view the relevant definitions and cross-references mentioned in that selected clause. You may deactivate or uninstall Auxtract at any time without cost.

HOW DOES AUXTRACT WORK?
Auxtract uses regular expression algorithms to scrape the schema markup of the Commonwealth legislation to produce the extracts. The extracts generated by Auxtract is based on the existing text of the Commonwealth legislation to which Auxtract is being applied. This means any changes or idiosyncrasies in the schema markup of the Commonwealth legislation may cause Auxtract to unintentionally pick up incorrect definitions or cross-references, or generate incomplete extracts. YOU SHOULD ALWAYS CHECK THE ACCURACY OF ANY OUTPUT GENERATED BY AUXTRACT BEFORE TRANSFORMING THE EXTRACT FOR YOUR OWN PURPOSES.

TERMS OF USE AND PRIVACY NOTICE
Auxtract is a proprietary tool. It is NOT sponsored or endorsed by the Federal Register Website nor its managing body the Office of Parliamentary Counsel. None of the contents produced by Auxtract is a substitute for legal advice.

By installing, accessing, using and interacting with AUXTRACT, you acknowledge, accept and agree to the Auxtract Terms of Use and Privacy Notice, as updated by the Creator from time to time.

ATTRIBUTION
The text of the extracted definitions and cross-references displayed in the 'Definitions' and 'Cross-references' tabs of the Auxtract interface is provided under the Creative Commons Attribution 4.0 International (the CC BY 4.0 licence).

UPDATES
v 1.4 - cross-referencing issues such as "45-10", "23.19" fixed; added alert notification that reminds you to launch Auxtract on Federal Register website
 
v1.3 - minified code for faster and efficient performance

v 1.2 - can now skip free trial straight to payment

v 1.1 - implementation of 2 day free trial mode for first time users

v 1.0 - initial version                    

Información Básica de la Extensión

Nombre Auxtract Auxtract
ID jfhfbionpidcnbpeegogjekdjkdfhobj
URL Oficial https://chromewebstore.google.com/detail/auxtract/jfhfbionpidcnbpeegogjekdjkdfhobj
Descripción Extracts relevant definitions and cross-references as you review Commonwealth legislation on the Federal Register (Australia only).
Tamaño del Archivo 75.29 KB
Cantidad de Instalaciones 107
Versión Actual 1.4
Última Actualización 2021-11-09
Fecha de Publicación 2021-10-27
Calificación 5.00/5 Total de 9 Calificaciones
Desarrollador Raymond Sun
Correo electrónico [email protected]
Tipo de Pago in_app
URL de la Página de Ayuda https://drive.google.com/file/d/1ToJgi1wJOuYDeIEphji9xUv-3gKQCSvA/view?usp=sharing
URL de la Página de Política de Privacidad https://www.techieray.com/terms.html
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auxtract",
    "description": "Extracts relevant definitions and cross-references as you review Commonwealth legislation on the Federal Register (Australia only).",
    "version": "1.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.legislation.gov.au\/Details\/*"
            ],
            "js": [
                "ExtPay.js",
                "RegexAlgo.js",
                "HTMLScraper.js",
                "BaseLegisMapper.js",
                "FederalLegisMapper.js",
                "BaseTable.js",
                "DefsTable.js",
                "XRefTable.js",
                "aboutUs.js",
                "NavBar.js",
                "displayMap.js",
                "contentScript.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/auxtract_16.png",
            "32": "\/images\/auxtract_32.png",
            "48": "\/images\/auxtract_48.png",
            "128": "\/images\/auxtract_128.png"
        }
    },
    "icons": {
        "16": "\/images\/auxtract_16.png",
        "32": "\/images\/auxtract_32.png",
        "48": "\/images\/auxtract_48.png",
        "128": "\/images\/auxtract_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/loadIcon.gif",
                "\/images\/auxtract_180x50.png",
                "\/images\/auxtract_140x40.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}