Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Okay, I have an iPhone 3G. I created an link from Safari using the "Add To Home Screen" button. It created a directory called <code>54C86B09482D4560BAB46091CC75825A.webclip</code> inside of <code>/private/var/mobile/Library/WebClips/</code>. That directory contains two files, <code>icon.png</code>and <code>Info.plist</code>. <code>icon.png</code> is simply the icon that gets shown when looking at the apps screen.</p> <p>The contents of <code>Info.plist</code> are where the real information is:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt; &lt;plist version="1.0"&gt; &lt;dict&gt; &lt;key&gt;ClassicMode&lt;/key&gt; &lt;false/&gt; &lt;key&gt;FullScreen&lt;/key&gt; &lt;false/&gt; &lt;key&gt;IconIsPrecomposed&lt;/key&gt; &lt;false/&gt; &lt;key&gt;IconIsScreenShotBased&lt;/key&gt; &lt;true/&gt; &lt;key&gt;Scale&lt;/key&gt; &lt;real&gt;0.32653060555458069&lt;/real&gt; &lt;key&gt;ScrollPoint&lt;/key&gt; &lt;dict&gt; &lt;key&gt;x&lt;/key&gt; &lt;real&gt;0.0&lt;/real&gt; &lt;key&gt;y&lt;/key&gt; &lt;real&gt;-183&lt;/real&gt; &lt;/dict&gt; &lt;key&gt;Title&lt;/key&gt; &lt;string&gt;The Daily WTF&lt;/string&gt; &lt;key&gt;UIStatusBarStyle&lt;/key&gt; &lt;string&gt;UIStatusBarStyleGray&lt;/string&gt; &lt;key&gt;URL&lt;/key&gt; &lt;string&gt;http://thedailywtf.com/&lt;/string&gt; &lt;/dict&gt; &lt;/plist&gt; </code></pre> <p><i>Edit: Fixed some grammar, clarified things a bit, and added the test/example below:</i></p> <p>So, to test this out I created a new folder called <code>C28C8FDC2F184AAD84F77B511442548F.webclip</code> and copied the <code>Info.plist</code> file over from the other directory, edited the url to <code>http://google.com</code>. I then re-sprung the phone and it showed up just like any other webclip. The folder name is simply a hex encoded GUID, I used <code>http://www.somacon.com/p113.php</code> and just selected what was after 0x for this simple test</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload