@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 545 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Open URLs in Chrome
* @section Content Types > Web > Chrome
* @icon Chrome
*
* Opens the inputted URLs in Google Chrome.
*
* ```js
* openURLsInChrome();
* ```
*/
const openURLsInChrome = () => ({
WFWorkflowActionIdentifier: 'com.google.chrome.ios.openurl',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(openURLsInChrome);
//# sourceMappingURL=openURLsInChrome.js.map