AO3 Enhancements

Various tweaks and enhancements for ArchiveOfOurOwn.org

AO3 Enhancementsとは何ですか?

AO3 EnhancementsはJasによって開発されたChromeの拡張機能で、その主な機能は「Various tweaks and enhancements for ArchiveOfOurOwn.org」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

AO3 Enhancements拡張機能のCRXファイルをダウンロード

AO3 Enhancements拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Adds various configurable tweaks and enhancements to the fanfiction website ArchiveOfOurOwn.org.

Current enhancements/features:

- Improves blurb (work) stats:
  - Shows Reading time and Finish reading at
  - Shows Kudos/Hits ratio, making it easier to find the amazing works.
- Adds whole new Chapter stats to each chapter
  - Shows Reading time and Finish reading at
  - Shows Published date for each chapter
- Allows hiding works when searching/browsing, based on:
  - The language of the work, and/or
  - How many fandoms the work is in (is it a crossover?), and/or
  - Is it written by certain authors?, and/or
  - Does it have certain tags?
- Can show icons for works you already know about.
  - Works that you have given kudos to
  - Works that you have subscribed to
  - Works that you have bookmarked
- Various style customizations: (only the 1 for now)
  - Adjust the width of a work, making reading on large displays easier
  - Show stats as columns to make them easier to read at a glance
  - Force allignment of work text

Furthermore i strive to make the addon at least as accessible as AO3 itself.
Please do report an issue if that is not the case.

Most of these features are disabled by default.
After installation go to ArchiveOfOurOwn.org and click the new menu button “AO3 Enhancements Options” to go to the options screen.

No data is ever sent to any servers except AO3, everything is stored in your browser.                    

拡張機能の基本情報

名前 AO3 Enhancements AO3 Enhancements
ID eljennickgdbghppcaenkcinjafmnfoi
公式URL https://chromewebstore.google.com/detail/ao3-enhancements/eljennickgdbghppcaenkcinjafmnfoi
説明 Various tweaks and enhancements for ArchiveOfOurOwn.org
ファイルサイズ 208 KB
インストール数 10,663
現在のバージョン 0.3.2
最終更新日 2020-07-12
公開日 2020-06-22
評価 4.58/5 合計 45 レビュー
開発者 Jas
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/jsmnbom/ao3-enhancements
ヘルプページのURL https://github.com/jsmnbom/ao3-enhancements/issues
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AO3 Enhancements",
    "version": "0.3.2",
    "description": "Various tweaks and enhancements for ArchiveOfOurOwn.org",
    "author": "Jasmin Bom",
    "icons": {
        "48": "\/icons\/icon-48.png",
        "96": "\/icons\/icon-96.png",
        "128": "\/icons\/icon-128.png"
    },
    "options_ui": {
        "page": "\/options_ui\/options_ui.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.archiveofourown.org\/*"
            ],
            "js": [
                "\/browser-polyfill.min.js",
                "\/content_script\/content_script.js"
            ],
            "css": [
                "\/content_script\/style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "\/icons\/icon.svg",
        "\/options_ui\/options_ui.html"
    ],
    "permissions": [
        "storage",
        "*:\/\/*.archiveofourown.org\/*"
    ],
    "minimum_chrome_version": "73"
}