Auxtract

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

什麼是Auxtract?

Auxtract是由Raymond Sun開發的Chrome擴展程式,該擴展的主要功能是“Extracts relevant definitions and cross-references as you review Commonwealth legislation on the Federal Register (Australia only).”。

擴展截圖

screenshot
screenshot
screenshot

下載Auxtract擴展crx文件

下載Auxtract擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Auxtract Auxtract
ID jfhfbionpidcnbpeegogjekdjkdfhobj
官方網址 https://chromewebstore.google.com/detail/auxtract/jfhfbionpidcnbpeegogjekdjkdfhobj
簡介 Extracts relevant definitions and cross-references as you review Commonwealth legislation on the Federal Register (Australia only).
檔案大小 75.29 KB
安裝次數 107
目前版本 1.4
更新時間 2021-11-09
上架時間 2021-10-27
評分 5.00/5 共 9 次評分
開發者 Raymond Sun
電子郵箱 [email protected]
付費類型 in_app
說明頁面URL https://drive.google.com/file/d/1ToJgi1wJOuYDeIEphji9xUv-3gKQCSvA/view?usp=sharing
隱私政策頁面URL https://www.techieray.com/terms.html
支援的語言 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": [
                ""
            ]
        }
    ]
}