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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } |