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
公式URL 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
Eメール [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": [
                ""
            ]
        }
    ]
}