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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for Archive of Our Own. Change order of tags, delete them or add new to your works."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Ao3 Tags Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |