[Question] 'Extensions Update Checker' ignorelist format #144
-
I just have a couple of quick questions about the ignore list in the Extensions Update Checker script. I'm guessing I should use the file/ID names from the profile extensions folder? (Windows: Also, what would the proper format be? Say I want to stop being reminded about a language pack (doesn't appear in the Extension Options Menu, but it's in the previously mentioned folder) and an extension that has an ID for a name. Would it be like this? ignoreList: [
{langpack-en-GB@firefox.mozilla.org},
{12345678-1234-1234-1234-1234567890AB}
], |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Correct. A quick way to get extensions ids is by opening Your error is that ids are strings and as such must be wrapped in quotes ( ignoreList: [
'[email protected]',
'{3c078156-979c-498b-8990-85f7987dd929}'//Sidebery
], |
Beta Was this translation helpful? Give feedback.
Correct. A quick way to get extensions ids is by opening
about:support
and looking atAdd-ons
table.Your error is that ids are strings and as such must be wrapped in quotes (
'
or"
). Like this: