Come posso creare un comportamento personalizzato per uno schema URL?

0

Vorrei uno schema URL specifico, magnet: , per eseguire un comando in Terminale.

Ad esempio:

magnet:?xt=urn:bKKH

Eseguirà:

myCommand "magnet:?xt=urn:bKKH"
    
posta nute 18.08.2015 - 18:04
fonte

1 risposta

1

Ho trovato la mia risposta usando AppleScript:

link

  • Crea un AppleScript che utilizza on open location this_URL
  • Salva come applicazione
  • Modifica Info.plist dell'applicazione con:

    <key>CFBundleURLTypes</key>
    <array>
      <dict>
        <key>CFBundleURLName</key>
        <string>Magnet</string>
        <key>CFBundleURLSchemes</key>
        <array>
          <string>magnet</string>
        </array>
      </dict>
    </array>
    
risposta data 25.08.2015 - 15:20
fonte

Leggi altre domande sui tag