Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / ui / cocoa / applescript / examples / open_tabs_from_bookmark_folder.applescript
blobaf36fc1dcff783417505358894dc4d0564dba355
1 -- Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 -- Use of this source code is governed by a BSD-style license that can be
3 -- found in the LICENSE file.
5 tell application "Chromium"
6 set var to bookmark folder "New" of bookmarks bar
7 -- Change the folder to whichever you want.
8 repeat with i in (bookmark items of var)
9 set u to URL of i
10 tell window 1 to make new tab with properties {u}
11 end repeat
12 end tell