Ao3 Tags Manager
Extension for Archive of Our Own. Change order of tags, delete them or add new to your works.
Ao3 Tags Managerとは何ですか?
Ao3 Tags Managerはalicjalukaszewskaによって開発されたChromeの拡張機能で、その主な機能は「Extension for Archive of Our Own. Change order of tags, delete them or add new to your works.」です。
拡張機能のスクリーンショット
Ao3 Tags Manager拡張機能のCRXファイルをダウンロード
Ao3 Tags Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chrome browser extension to manage tags for your works on Archive of Our Own. Change order of tags, delete them or add new to your works. The extension for now only supports already posted works. How does it work? 1. Existing work tags are placed in the extension, where they can be modified - reordered or deleted. It is also possible to add new tags by hand. 2. By clicking "Save and Post", the extension first deletes tags and post the work without them. Then it refills the work with the modified tags and post the work again. The whole process happens in a fraction of a second. 3. Since the extension is in the early stage we STRONGLY RECOMMEND TO BACKUP YOUR EXISTING TAGS BEFORE USING IT. Take a screenshot of your tags or write them down before using the extension!
拡張機能の基本情報
名前 | Ao3 Tags Manager |
ID | nkflgmdpfncomndckbdehjckikcecokp |
公式URL | https://chromewebstore.google.com/detail/ao3-tags-manager/nkflgmdpfncomndckbdehjckikcecokp |
説明 | Extension for Archive of Our Own. Change order of tags, delete them or add new to your works. |
ファイルサイズ | 14.26 KB |
インストール数 | 52 |
現在のバージョン | 1.0 |
最終更新日 | 2022-06-18 |
公開日 | 2022-06-17 |
開発者 | alicjalukaszewska |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/alicjalukaszewska/ao3-tag-manager |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ao3 Tags Manager", "description": "Extension for Archive of Our Own. Change order of tags, delete them or add new to your works.", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.archiveofourown.org\/**\/edit*" ], "js": [ "script.js" ], "run_at": "document_idle", "all_frames": false } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } }, "icons": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } } |