diff options
Diffstat (limited to 'chrome/browser/ui/cocoa/applescript/examples/delete_bookmarks.applescript')
-rw-r--r-- | chrome/browser/ui/cocoa/applescript/examples/delete_bookmarks.applescript | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/chrome/browser/ui/cocoa/applescript/examples/delete_bookmarks.applescript b/chrome/browser/ui/cocoa/applescript/examples/delete_bookmarks.applescript new file mode 100644 index 0000000..341b100 --- /dev/null +++ b/chrome/browser/ui/cocoa/applescript/examples/delete_bookmarks.applescript @@ -0,0 +1,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 |