Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any online .plist editor? [closed]

Tags:

I'm interested in an online application like the tool that comes with XCode, that shows the keys and values as rows, in an editable manner and handles xml plists (I don't care if it handles binary ones as well).

like image 844
luvieere Avatar asked Sep 29 '09 13:09

luvieere


People also ask

How do I open a plist file online?

If you cannot open your PLIST file correctly, try to right-click or long-press the file. Then click "Open with" and choose an application. You can also display a PLIST file directly in the browser: Just drag the file onto this browser window and drop it.

How do I edit my Apple plist?

plist file. If you need to edit these items, Control-click (or right-click) Info. plist in the sidebar and select Edit Manually. This allows you to add or edit items in raw XML format.

Can I edit plist files on Windows?

plist Editor Pro is a tool that can help you to reading and edit both XML format and binary format plist file under Windows system.

What app opens a plist file?

iBackup Viewer offers a free utility tool to view binary and xml PLIST files, also provides a simple HEX viewer to view binary data value of the plist file. Please follow these steps to open plist file on Windows. Download and install iBackup Viewer on your computer, launch iBackup Viewer.


2 Answers

So, I was wondering the exact same thing, and when I saw this question and its answer, I said "Screw it, I'm making one!" And so I did. Two days later, here's my answer to you:

http://tustin2121.github.io/jsPlistor/

jsPListor (version 1 as of Aug 8th, 2013) will allow you to paste in the contents of an xml plist into it (via the Import button) and edit it with drag and drop and the like. When you're done, hit Export and it will package it all up into a valid plist for you to copy and paste back into the file.

There's still some bugs and glaring vacancies (like the Data Editing Dialog), but it functions. Future versions will attempt to allow saving via html5 download, and loading of files into data rows.

Feel free to examine, contribute, and submit bugs at the github repo: https://github.com/tustin2121/jsPlistor

like image 187
Tustin2121 Avatar answered Sep 17 '22 19:09

Tustin2121


I have resigned myself to the fact that there probably isn't one I will ever find. What I have found, however, is that JSON format and text PList format are very similar, and there are plenty of JSON editors available online and for windows and mac both. It may not be suitable for your needs, but it suited my needs just fine. By using nothing more than a couple of find & replaces in Notepad you can get 90% of the way to a plist file. The only big issue is semicolons vs. commas.

If you're working on a small enough file, that could be done manually. With larger files, a simple utility app to convert JSON to PList files would probably be pretty simple to whip up if you've got the urge.

Again, this all applies only to text formatted plist files. Most plist editors on mac at least can save a plist in text format.

like image 45
Ed Marty Avatar answered Sep 17 '22 19:09

Ed Marty