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.”。
擴展截圖
下載AO3 Progress Bookmark擴展crx文件
下載AO3 Progress Bookmark擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | bhoneiohifjbclebcmibnlgmdhdpahki |
官方網址 | 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" ] } ] } |