AO3 Progress Bookmark

Bookmarks Archive of Our Own (AO3)'s works precisely at the page scroll position.

AO3 Progress Bookmark란 무엇입니까?

AO3 Progress Bookmark은(는) cc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmarks Archive of Our Own (AO3)'s works precisely at the page scroll position."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

AO3 Progress Bookmark 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Features:
- bookmark at the page scroll position. (allowing users to bookmark up to 1000 AO3 works)
- backup page content in case of AO3 service down
- optional UI enhancements

This extension is not meant to replace the AO3 bookmark feature. Instead, it serves as a temporary place for readers to keep track of their reading progress. (Think of it as a way to manage the numerous AO3 tabs you had opened, which you would want return to where you left off at a later time).

For permanent saving of an AO3 work for future reference, I recommend using AO3's built-in bookmark feature.                    

확장 프로그램 기본 정보

이름 AO3 Progress Bookmark AO3 Progress Bookmark
ID bhoneiohifjbclebcmibnlgmdhdpahki
공식 URL https://chromewebstore.google.com/detail/ao3-progress-bookmark/bhoneiohifjbclebcmibnlgmdhdpahki
설명 Bookmarks Archive of Our Own (AO3)'s works precisely at the page scroll position.
파일 크기 77.56 KB
설치 횟수 72
현재 버전 0.1.1
최근 업데이트 2023-10-22
출시 날짜 2023-08-03
평점 5.00/5 총 1 개의 평점
개발자 cc
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/catcoder13/ao3-progress-bookmark
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AO3 Progress Bookmark",
    "version": "0.1.1",
    "description": "Bookmarks Archive of Our Own (AO3)'s works precisely at the page scroll position.",
    "icons": {
        "128": "imgs\/ao3pb.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "imgs\/ao3pb.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/archiveofourown.org\/works\/*",
                "https:\/\/archiveofourown.org\/chapters\/*"
            ],
            "exclude_matches": [
                "https:\/\/archiveofourown.org\/works",
                "https:\/\/archiveofourown.org\/works\/new*",
                "https:\/\/archiveofourown.org\/works\/search*",
                "https:\/\/archiveofourown.org\/works\/*\/comments*",
                "https:\/\/archiveofourown.org\/works\/*\/edit*",
                "https:\/\/archiveofourown.org\/works\/*\/chapters\/new*",
                "https:\/\/archiveofourown.org\/works\/*\/chapters\/manage*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/chunk-vendors.js",
                "js\/content.js"
            ]
        }
    ]
}