我会自信地说,这[[不能
我正在尝试一种创造性的方式来打破我对YouTube的依赖。
当我访问youtoube.com时,如何产生令人讨厌的声音?我曾尝试使用Applescript来做到这一点,但是却一无所获,所以我在看互联网是否可以提供帮助。我主要只需要一些方法,可以不断检查我当前的网站(Safari和/或Chrome)并在使用YouTube时触发事件。我知道如何播放声音,但不知道站点检查部分。最好我可以在Automator上制作。
我知道有更好的习惯可以改掉习惯,但是我真的很想这样做。我真的希望有人能提供帮助。预先感谢!
[如果Chrome或Safari的前选项卡位于包含单词“ youtube”的URL上,这将引起讨厌的声音。
**编辑**以使其在自动化器中起作用:
单击“ Automator”窗口左上角的“操作”,然后在“库”中选择“实用程序”。]] >>
选择'运行AppleScript'
(在输入框中替换all代码)
on run
set check to "youtube"
repeat
try
tell application "Safari"
set theURLs to URL of current tab of window 1
end tell
end try
try
tell application "Google Chrome"
set theURLc to URL of active tab of front window
end tell
end try
if check is in theURLs then
tell application "System Events"
beep
end tell
end if
if check is in theURLc then
tell application "System Events"
beep
end tell
end if
end repeat
end run
我会自信地说,这[[不能
我会自信地说,这[[不能