blob: af36fc1dcff783417505358894dc4d0564dba355 [file] [log] [blame]
-- Copyright (c) 2010 The Chromium Authors. All rights reserved.
-- Use of this source code is governed by a BSD-style license that can be
-- found in the LICENSE file.
tell application "Chromium"
set var to bookmark folder "New" of bookmarks bar
-- Change the folder to whichever you want.
repeat with i in (bookmark items of var)
set u to URL of i
tell window 1 to make new tab with properties {u}
end repeat
end tell