diff options
3 files changed, 3 insertions, 2 deletions
diff --git a/chrome/common/extensions/api/_permission_features.json b/chrome/common/extensions/api/_permission_features.json index b9b2607..037d73f 100644 --- a/chrome/common/extensions/api/_permission_features.json +++ b/chrome/common/extensions/api/_permission_features.json @@ -295,7 +295,7 @@ "extension_types": ["extension", "packaged_app"] }, "tabCapture": { - "channel": "canary", + "channel": "dev", "extension_types": ["extension", "packaged_app"] }, "terminalPrivate": { diff --git a/chrome/common/extensions/docs/templates/public/extensions/tabCapture.html b/chrome/common/extensions/docs/templates/public/extensions/tabCapture.html new file mode 100644 index 0000000..b28290d --- /dev/null +++ b/chrome/common/extensions/docs/templates/public/extensions/tabCapture.html @@ -0,0 +1 @@ +{{+partials.standard_extensions_api api:apis.tab_capture}} diff --git a/chrome/common/extensions/feature_switch.cc b/chrome/common/extensions/feature_switch.cc index 0e62437..dac0514 100644 --- a/chrome/common/extensions/feature_switch.cc +++ b/chrome/common/extensions/feature_switch.cc @@ -45,7 +45,7 @@ class CommonSwitches { FeatureSwitch::DEFAULT_DISABLED), tab_capture( switches::kTabCapture, - FeatureSwitch::DEFAULT_DISABLED) + FeatureSwitch::DEFAULT_ENABLED) { if (!action_box.IsEnabled()){ extensions_in_action_box.SetOverrideValue( |