Cohost Tag Groups
Adds the ability to conveniently add multiple related tags to a Cohost post.
Co to jest Cohost Tag Groups?
Cohost Tag Groups to rozszerzenie Chrome opracowane przez AmyPercent, a jego główną funkcją jest „Adds the ability to conveniently add multiple related tags to a Cohost post.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Cohost Tag Groups
Pobierz pliki rozszerzeń Cohost Tag Groups w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Cohost Tag Groups |
ID | habpkepemnohglcekmjnjnbpphmkhnhi |
Oficjalny URL | https://chromewebstore.google.com/detail/cohost-tag-groups/habpkepemnohglcekmjnjnbpphmkhnhi |
Opis | Adds the ability to conveniently add multiple related tags to a Cohost post. |
Rozmiar pliku | 9.79 KB |
Liczba instalacji | 49 |
Aktualna Wersja | 1.8 |
Ostatnia Aktualizacja | 2023-09-09 |
Data Publikacji | 2023-04-23 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | AmyPercent |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://cohost.org/amypercent |
Obsługiwane Języki | 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]" } } } |