9 lines
177 B
Python
9 lines
177 B
Python
from browser import window
|
|
# interface to plugin properties
|
|
|
|
def get_preference(key):
|
|
return window.customizeEditor[key] if window.customizeEditor else None
|
|
|
|
|
|
|