********** अद्यतन समाधान **********
यह अद्यतन ओपी के मूल प्रश्न का सीधा समाधान है।
निम्न AppleScript कोड "Play / Pause YouTube" स्थिति मेनू आइटम को Google Chrome या Safari दोनों में से किसी भी YouTube वीडियो को चलाने या रोकने के विकल्प के साथ जोड़ेगा, चाहे ब्राउज़र दिखाई दे या नहीं। स्क्रिप्ट एडिटर .app में "स्टे ओपन" एप्लिकेशन के रूप में निम्नलिखित AppleScript कोड को सहेजें।
use framework "Foundation"
use framework "AppKit"
use scripting additions
property StatusItem : missing value
property selectedMenu : ""
property defaults : class "NSUserDefaults"
property internalMenuItem : class "NSMenuItem"
property externalMenuItem : class "NSMenuItem"
property newMenu : class "NSMenu"
my makeStatusBar()
my makeMenus()
on makeStatusBar()
set bar to current application's NSStatusBar's systemStatusBar
set StatusItem to bar's statusItemWithLength:-1.0
-- set up the initial NSStatusBars title
StatusItem's setTitle:"Play/Pause YouTube"
-- set up the initial NSMenu of the statusbar
set newMenu to current application's NSMenu's alloc()'s initWithTitle:"Custom"
newMenu's setDelegate:me (*
Requied delegation for when the Status bar Menu is clicked the menu will use the delegates method (menuNeedsUpdate:(menu)) to run dynamically update.*)
StatusItem's setMenu:newMenu
end makeStatusBar
on makeMenus()
newMenu's removeAllItems() -- remove existing menu items
set someListInstances to {"Play/Pause YouTube - Safari", "Play/Pause YouTube - Chrome", "Quit"}
repeat with i from 1 to number of items in someListInstances
set this_item to item i of someListInstances
set thisMenuItem to (current application's NSMenuItem's alloc()'s initWithTitle:this_item action:("someAction" & (i as text) & ":") keyEquivalent:"")
(newMenu's addItem:thisMenuItem)
(thisMenuItem's setTarget:me) -- required for enabling the menu item
end repeat
end makeMenus
on someAction1:sender
clickClassName2("ytp-play-button ytp-button", 0)
end someAction1:
on someAction2:sender
clickClassName("ytp-play-button ytp-button", 0)
end someAction2:
on someAction3:sender
quit me
end someAction3:
to clickClassName2(theClassName, elementnum)
if application "Safari" is running then
try
tell application "Safari"
tell window 1 to set current tab to tab 1 whose URL contains "youtube"
do JavaScript "document.getElementsByClassName('" & theClassName & "')[" & elementnum & "].click();" in document 1
end tell
end try
end if
end clickClassName2
to clickClassName(theClassName, elementnum)
tell application "Google Chrome" to (tabs of window 1 whose URL contains "youtube")
set youtubeTabs to item 1 of the result
tell application "Google Chrome"
execute youtubeTabs javascript "document.getElementsByClassName('" & theClassName & "')[" & elementnum & "].click();"
end tell
end clickClassName
यदि आप अपना नया चाहते हैं ... Play YouTube YouTube स्थिति मेनू। केवल स्थिति मेनू में दिखाई दे और डॉक में नहीं, आप खोजक में एप्लिकेशन पर राइट-क्लिक करें और "पैकेज सामग्री दिखाएं" विकल्प का चयन करें। सामग्री फ़ोल्डर में, किसी भी पाठ संपादक में Info.plist फ़ाइल खोलें और निम्नलिखित दो पंक्तियाँ जोड़ें। फिर उस फाइल को सेव करें और बंद करें।
<key>LSBackgroundOnly</key>
<true/>
यदि आप सीधे .plist फ़ाइल को संपादित करने में सहज नहीं हैं, तो यह AppleScript कोड निम्नलिखित आपको डॉक से छिपाने के लिए एप्लिकेशन को चुनने की अनुमति देगा जब यह चल रहा है।
यदि चुने गए एप्लिकेशन को पहले से ही डॉक से छिपाया जाना तय है, तो आपको दिया जाने वाला एकमात्र विकल्प डॉक में दिखाई देने से होने वाले कार्य को अनसाइड करना है जबकि यह चल रहा है ... और इसके विपरीत।
यह स्क्रिप्ट विशेष रूप से एक छुपाने के लिए आसान है "स्टे ओपन एप्लीकेशन" आइडल हैंडलर के एप्लिकेशन आइकन के साथ डॉक में दौड़ने के दौरान दिखाई देते हैं।
property fileTypes : {"com.apple.application-bundle"}
property plistFileItem : " <key>LSBackgroundOnly</key>" & linefeed & " <true/>"
activate
set chosenApp to (choose application with prompt ¬
"Choose The Application You Want Hidden From The Dock While It Is Running" as alias)
tell application "System Events" to set appName to name of chosenApp
set plistFile to ((POSIX path of chosenApp) & "/Contents/info.plist") as string
set plistFileContents to (read plistFile)
set plistFileItemExists to plistFileItem is in plistFileContents
if plistFileItemExists then
activate
set theChoice to button returned of (display dialog ¬
"Would you like to un-hide " & quote & appName & quote & ¬
" from the Dock while it's running?" buttons {"Cancel", "Un-Hide"} ¬
default button 2 cancel button 1 with title "Make A Choice")
else
activate
set theChoice to button returned of (display dialog ¬
"Would you like to hide " & quote & appName & quote & ¬
" from the Dock while it's running?" buttons {"Cancel", "Hide"} ¬
default button 2 cancel button 1 with title "Make A Choice")
end if
if theChoice is "Hide" then
tell application "System Events" to tell contents of property list file plistFile ¬
to make new property list item at end with properties ¬
{kind:string, name:"LSBackgroundOnly", value:true}
else if theChoice is "Un-Hide" then
tell application "System Events" to tell contents of property list file plistFile ¬
to make new property list item at end with properties ¬
{kind:string, name:"LSBackgroundOnly", value:false}
else
return
end if
************ मूल समाधान ************
यह स्क्रिप्ट Google Chrome में YouTube पर चल रहे वीडियो पर Play / पॉज़ बटन पर क्लिक करेगी, चाहे Google Chrome दिखाई दे या नहीं।
to clickClassName(theClassName, elementnum)
tell application "Google Chrome" to (tabs of window 1 whose URL contains "youtube")
set youtubeTabs to item 1 of the result
tell application "Google Chrome"
execute youtubeTabs javascript "document.getElementsByClassName('" & theClassName & "')[" & elementnum & "].click();"
end tell
end clickClassName
clickClassName("ytp-play-button ytp-button", 0)
यह सफारी के साथ काम करने के लिए स्क्रिप्ट संस्करण है
to clickClassName2(theClassName, elementnum)
tell application "Safari"
tell window 1 to set current tab to tab 1 whose URL contains "youtube"
do JavaScript "document.getElementsByClassName('" & theClassName & "')[" & elementnum & "].click();" in document 1
end tell
end clickClassName2
clickClassName2("ytp-play-button ytp-button", 0)
ओपी ए को पूरी तरह से AppleScript समाधान देने के प्रयास में, मैंने अपना मूल उत्तर एक कदम आगे बढ़ाया है।
अपडेट करें
मुझे अंत में यह समझ आ गया। मैंने Xcode में AppleScript एप्लिकेशन बनाया। मूल रूप से, मेरा प्रोजेक्ट केवल Chrome या सफारी में सक्रिय YouTube वीडियो को नियंत्रित करने के लिए एक बटन विंडो के साथ शुरू हुआ था। यह परियोजना एक ऐसे अनुप्रयोग में थोड़ी सी बढ़ी है जिसमें कई उपयोगिताओं हैं। यह जीआईएफ क्रोम और सफारी में यूट्यूब पॉज़ बटन को नियंत्रित करता है। मैंने बटन कार्रवाइयों को मूल रूप से स्क्रिप्ट एडिटर में लिखे गए AppleScript से जोड़ा था।
यह AppDelegate.applescript फ़ाइल में काम कर रहे Xcode एप्लिकेशन का एक स्नैपशॉट है।
यहाँ उस फ़ाइल में कोड है जो मैंने प्रोग्राम को काम करने के लिए बनाया था।
script AppDelegate
property parent : class "NSObject"
-- IBOutlets
property theWindow : missing value
to clickClassName(theClassName, elementnum) -- Handler for pausing YouTube in Chrome
if application "Google Chrome" is running then
try
tell application "Google Chrome" to (tabs of window 1 whose URL contains "youtube")
set youtubeTabs to item 1 of the result
tell application "Google Chrome"
execute youtubeTabs javascript "document.getElementsByClassName('" & theClassName & "')[" & elementnum & "].click();"
end tell
end try
end if
end clickClassName
to clickClassName2(theClassName, elementnum) -- Handler for pausing YouTube in Safari
if application "Safari" is running then
try
tell application "Safari"
tell window 1 to set current tab to tab 1 whose URL contains "youtube"
do JavaScript "document.getElementsByClassName('" & theClassName & "')[" & elementnum & "].click();" in document 1
end tell
end try
end if
end clickClassName2
on doSomething:sender -- Calls the Chrome YouTube Handler
clickClassName("ytp-play-button ytp-button", 0)
end doSomething:
on doSomething14:sender -- Calls the Safari YouTube Handler
clickClassName2("ytp-play-button ytp-button", 0)
end doSomething14:
on doSomething2:sender -- Hide and or show the Menu Bar
tell application "System Preferences"
reveal pane id "com.apple.preference.general"
end tell
tell application "System Events" to tell process "System Preferences" to tell window "General"
click checkbox "Automatically hide and show the menu bar"
end tell
delay 1
quit application "System Preferences"
end doSomething2:
on doSomething3:sender -- Sets Display resolution to the second lowest setting (15 inch Built In Retina Display - MBP)
tell application "System Preferences"
reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays"
end tell
tell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display"
click radio button "Scaled" of radio group 1 of tab group 1
click radio button 2 of radio group 1 of group 1 of tab group 1
end tell
quit application "System Preferences"
end doSomething3:
on doSomething4:sender -- Sets Display resolution to the second highest setting (15 inch Built In Retina Display - MBP)
tell application "System Preferences"
reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays"
end tell
tell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display"
click radio button "Scaled" of radio group 1 of tab group 1
click radio button 4 of radio group 1 of group 1 of tab group 1
end tell
quit application "System Preferences"
end doSomething4:
on doSomething5:sender -- Sets Display resolution to the highest setting (15 inch Built In Retina Display - MBP)
tell application "System Preferences"
reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays"
end tell
tell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display"
click radio button "Scaled" of radio group 1 of tab group 1
click radio button 5 of radio group 1 of group 1 of tab group 1
end tell
quit application "System Preferences"
end doSomething5:
on doSomething6:sender -- Sets Display resolution to the lowest setting (15 inch Built In Retina Display - MBP)
tell application "System Preferences"
reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays"
end tell
tell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display"
click radio button "Scaled" of radio group 1 of tab group 1
click radio button 1 of radio group 1 of group 1 of tab group 1
delay 0.1
click button "OK" of sheet 1
quit application "System Preferences"
end tell
end doSomething6:
on doSomething7:sender -- Displays a dialog with your current IP
tell current application to display dialog (do shell script "curl ifconfig.io") with icon 2 buttons "OK" default button 1 with title "Your Current IP Address Is.." giving up after 5
end doSomething7:
on doSomething8:sender -- Shows hidden files in Finder
do shell script "defaults write com.apple.finder AppleShowAllFiles TRUE\nkillall Finder"
end doSomething8:
on doSomething9:sender -- Hides hidden files in Finder if they are showing
do shell script "defaults write com.apple.finder AppleShowAllFiles FALSE\nkillall Finder"
end doSomething9:
on doSomething10:sender -- Brightness Highest
tell application "System Preferences"
reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays"
end tell
tell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display"
set value of value indicator 1 of slider 1 of group 2 of tab group 1 to 12
end tell
quit application "System Preferences"
end doSomething10:
on doSomething11:sender -- Brightness Lowest
tell application "System Preferences"
reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays"
end tell
tell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display"
set value of value indicator 1 of slider 1 of group 2 of tab group 1 to 0.1
end tell
quit application "System Preferences"
end doSomething11:
on doSomething12:sender -- Zoom
tell application "System Events"
key code 28 using {command down, option down}
end tell
end doSomething12:
on doSomething13:sender -- Dictation On/Off
tell application "System Events"
keystroke "x" using {option down}
end tell
end doSomething13:
on doSomething15:sender -- Enables Screensaver as Desktop background
tell application "System Events"
do shell script "/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine -background"
end tell
end doSomething15:
on doSomething16:sender -- Kills Screensaver Desktop background
try
tell application id "com.apple.ScreenSaver.Engine" to quit
end try
end doSomething16:
on applicationWillFinishLaunching:aNotification
-- Insert code here to initialize your application before any files are opened
end applicationWillFinishLaunching:
on applicationShouldTerminate:sender
-- Insert code here to do any housekeeping before your application quits
return current application's NSTerminateNow
end applicationShouldTerminate:
on applicationShouldTerminateAfterLastWindowClosed:sender -- Quits app when clicking red x
return TRUE
end applicationShouldTerminateAfterLastWindowClosed:
end script
मैंने कोड अपडेट किया ताकि क्रोम में YouTube टैब को Xcode में बने YouTube Pause बटन पर क्लिक करने पर दृश्यमान या सक्रिय टैब होने की आवश्यकता न हो
यहाँ पूरे Xcode प्रोजेक्ट को डाउनलोड करने का लिंक दिया गया है
चेतावनी: डेस्कटॉप स्क्रीन सेवर फ़ंक्शन ऐप को फ्रीज कर देगा। बल छोड़ने और फिर से खोलने के बाद, सक्रिय स्क्रीन सेवर से बाहर निकलने के लिए डेस्कटॉप स्क्रीनसेवर फ़ंक्शन काम करेगा।
हालांकि इसके बाद: मुझे शायद इस परियोजना के साथ खेलने वालों के लिए सभी प्रकार के त्रुटि संदेशों से बचने के लिए "कोशिश" कथनों में AppleScript कोड को लपेटना चाहिए, जिनके पास समान सिस्टम और कंप्यूटर प्रकार नहीं है जो मैं करता हूं। (मैकबुक प्रो 15 "ओएस सिएरा 10.12.6)
ज़ूम फ़ंक्शन के लिए काम करने के लिए, इसे सिस्टम वरीयताओं में सक्षम किया जाना चाहिए।
"डिक्टेशन ऑन / ऑफ" टॉगल करने के लिए सही ढंग से कार्य करने के लिए, सिस्टम वरीयताओं में डिक्टेशन कमांड को सक्षम करने के लिए शॉर्ट कट को स्क्रिप्ट में उपयोग किए गए शॉर्टकट से मेल खाना चाहिए।
on doSomething13:sender -- Dictation On/Off
tell application "System Events"
keystroke "x" using {option down}
end tell
end doSomething13:
वर्तमान में मैं केवल विंडो या मेनू बार चलाने वाले एप्लिकेशन के बीच टॉगल करने की क्षमता पर काम कर रहा हूं