Cohost Tag Groups
Adds the ability to conveniently add multiple related tags to a Cohost post.
Hvad er Cohost Tag Groups?
Cohost Tag Groups er en Chrome-udvidelse udviklet af AmyPercent, og dens hovedfunktion er "Adds the ability to conveniently add multiple related tags to a Cohost post.".
Udvidelsesskærmbilleder
Download Cohost Tag Groups-udvidelses-CRX-fil
Download Cohost Tag Groups-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
In the options page for this extension, you can add keys and values. Keys correspond to tags that you will manually enter, and values correspond to tags that will automatically be added by the extension when creating or editing posts.
Grundlæggende oplysninger om udvidelsen
Navn | Cohost Tag Groups |
ID | habpkepemnohglcekmjnjnbpphmkhnhi |
Officiel URL | https://chromewebstore.google.com/detail/cohost-tag-groups/habpkepemnohglcekmjnjnbpphmkhnhi |
Beskrivelse | Adds the ability to conveniently add multiple related tags to a Cohost post. |
Filstørrelse | 9.79 KB |
Antal Installationer | 49 |
Nuværende Version | 1.8 |
Senest Opdateret | 2023-09-09 |
Udgivelsesdato | 2023-04-23 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | AmyPercent |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://cohost.org/amypercent |
Understøttede Sprog | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Cohost Tag Groups", "version": "1.8", "description": "Adds the ability to conveniently add multiple related tags to a Cohost post.", "icons": { "16": "icons\/eggbug-wizard-16.png", "32": "icons\/eggbug-wizard-32.png", "48": "icons\/eggbug-wizard-48.png", "96": "icons\/eggbug-wizard-96.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.cohost.org\/*" ], "js": [ "tag-groups.js" ] } ], "options_ui": { "page": "options.html", "open_in_tab": true, "browser_style": true }, "permissions": [ "storage" ], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |