javascript - How can I change chrome://flags using chrome API? -


i started using chrome extensions api , there 1 settings page experimental features , need change of them. how can change these settings api?

chrome://flags <= experimental features

thanks!

you can check documentation *chrome.experimental.api.

it includes here steps on how use api.

to enable api in browser, can in either of 2 ways:

  • go chrome://flags, find "experimental extension apis", click "enable" link, , restart chrome. on, unless return page , disable experimental apis, you'll able run extensions , apps use experimental apis.

  • specify --enable-experimental-extension-apis flag each time launch browser. on windows, can modifying properties of shortcut use launch google chrome. example: path_to_chrome.exe --enable-experimental-extension-apis

caution: don't depend on these experimental apis. might disappear, , change. also, chrome web store doesn't allow upload items use experimental apis.


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -