MrOtherGuy / fx-autoconfig

Load custom javascript in browser context
Mozilla Public License 2.0
164 stars 10 forks source link

A question, about chrome.manifest #9

Closed Mitezuss closed 2 years ago

Mitezuss commented 2 years ago

Hi, i wanna know what is the diferent beetwen, for example:

content res ../res/ and resource userchome ../res/

So, chrome://res/content/ resource://userchome/

You are not using "resource", just "content" both style and script; so, when i should use resource ?

Thanks

MrOtherGuy commented 2 years ago

Here's something about chrome manifests

In addition, there are some cases (though I can't give you an example of the top of my head) where the program logic gives different permissions to resources based on their uri. Some features may only be available in resources loaded from chrome:// uri for example.

Mitezuss commented 2 years ago

Thanks