https://www.plasmo.com/ logo
Join Discord
Powered by
# 🎫support-docs
  • f

    flat-state-13182

    07/12/2022, 8:51 AM
    Plasmo storage docs are down
    l
    q
    +2
    • 5
    • 8
  • s

    sticky-dress-98131

    08/08/2022, 7:04 PM
    Updated auto-threading settings for #983821277116649542
  • l

    limited-farmer-52140

    08/19/2022, 8:32 AM
    > In this doc: https://docs.plasmo.com/workflows/submit, it says: The Plasmo Framework ships with a convenient GitHub action called Browser Platform Publish or BPP. What if this changed since I bootstrapped the project? Do you plan to have a CLI tool which diffs the init script with the existing files to suggest updates?
    s
    • 2
    • 2
  • q

    quiet-electrician-41149

    09/03/2022, 6:40 PM
    Are there docs on how to build your extension for safari?
    s
    l
    • 3
    • 4
  • b

    busy-greece-52941

    09/26/2022, 1:43 PM
    Hey guys was there an update for i18n internalisation? If so, is it possible that the docs does not represent that yet? I'm just guessing by this commit: https://github.com/PlasmoHQ/examples/commit/38fd900e73273920c7169b8980d10a7c7fabb6d1
    s
    • 2
    • 2
  • a

    ambitious-restaurant-41333

    09/27/2022, 7:48 AM
    Speaking about locales, I recommend modifying the example a little https://docs.plasmo.com/browser-extension/locales#:~:text=chrome.i18n.getMessage(%22popup%22) Replace the
    chrome.i18n.getMessage()
    with
    getI18n()
    Copy code
    ts
    function getI18n(id, fallback = ""): string {
      return chrome.i18n.getMessage(id) || fallback;
    }
    This way, not only the dev doesn't have to provide all of the messages, but also the code will be self-documenting
    s
    • 2
    • 1