What are the essentials of storing information in project.json? #2219
-
I am attempting to replicate the functionality implemented in obviousAlexc's |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
According to something I understood from reading about extensions, you need your extension to be registered as an internal object. But I can't tell you. I hope you find a solution. |
Beta Was this translation helpful? Give feedback.
-
if (!runtime.extensionStorage[EXTENSION ID HERE!!!]) {
runtime.extensionStorage[EXTENSION ID HERE!!!] = Object.create(null);
} Then edit |
Beta Was this translation helpful? Give feedback.
@2001733
Then edit
runtime.extensionStorage[EXTENSION ID HERE!!!]
's properties to save stuff.