问题描述
我希望启用使用JavaScript的谷歌浏览器标志。如果标志启用,则不需要任何操作,如果禁用,则启用它。
本地状态文件包含标志设置(这是json格式的文本文件)
browser:{
enabled_labs_experiments:[load-cloud-policy-on-signin,old-checkbox-style],
last_redirect_origin:
}
enabled_labs_experiments属性包含用户手动启用的此类标志的值。在您的情况下,首先检查您的首选标志条目是否可用,如果不是,那么您必须通过javascript在此文件中添加您的标志。
使用javascript,您可以读取和编辑文本文件,以便根据操作系统从指定位置读取该文件并编辑该文件。
I want to enable google chrome flags enable using JavaScript.If flags enable then no action require, if disable then make it enable .
local state file contains setting of flags(This is text file in json format)
Chrome user directory location
"browser": {
"enabled_labs_experiments": [ "load-cloud-policy-on-signin", "old-checkbox-style" ],
"last_redirect_origin": ""
}
"enabled_labs_experiments" attribute contains value of such flags which user enabled manually.In your case you have to first check your preferred flag entry is available or not if not then you have to add your flag in this file by javascript.
Using javascript you can read and edit text files so read that file from specified location as per operating system and edit that file.
这篇关于如何启用谷歌铬铬://标志/值使用JavaScript?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!