summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/applescript/examples/delete_bookmarks.applescript
blob: 341b100d3d65dd3e206f97b00f367f4a399a1eaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- 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.

-- This script deletes all the items within a bookmark folder.
tell application "Chromium"
  set var to bookmark folder "New" of bookmarks bar
  -- Change the folder to whichever you want.
  tell var
    delete every bookmark item
    delete every bookmark folder
  end tell
end tell