Not signed in (Sign In)

Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorMikster
    • CommentTimeFeb 6th 2008 edited
     
    I'm a new user (and avid fan) of chipmark, and was hoping someone could enlighten me...

    The "chipmark this page" bookmarklet is very handy, but I'd like to create my own bookmarklet, one which silently chipmarked the current page into a particular directory, rather than opening the "Chipmark this page" dialog. Is that doable?

    Even if it isn't, I'd like to learn more about how to write bookmarklets for chipmark... I'm sure I'll think of other functions I'd like to implement.

    Many thanks...
    •  
      CommentAuthorcrash
    • CommentTimeFeb 7th 2008 edited
     
    (example ~ photos from firefox2) Spread Firefox


    https://www.chipmark.com/AddLink




    The post to del.icio.us button allows you to post your current page to del.icio.us



    This is a copy of this post
    • CommentAuthorMikster
    • CommentTimeFeb 7th 2008
     
    Those are certainly useful links, but what I'm trying to learn is how to create my *own* bookmarklets.

    I want to create one which will silently add the current page to my chipmark "inbox" with whatever defaults (e.g. "public" vs. "private) I'd like. I'm asking if this is possible via bookmarklet, and, if so, how do I do it, and/or where can I go to learn how to do it.
    •  
      CommentAuthorcrash
    • CommentTimeFeb 8th 2008 edited
     
    hmm... lets try to make one here!

    the post to del.icio.us bookmarklet
    javascript:location.href='http://del.icio.us/post?v=4;url='+encodeURIComponent(location.href)+';title='+encodeURIComponent(document.title)

    the Spread Firefox header
    <head>
    <title>Spread Firefox | The Home of Firefox Community Marketing</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="alternate" type="application/rss+xml" title="Spread Firefox RSS" href="http://www.spreadfirefox.com/node/feed" />

    <link rel="shortcut icon" href="/files/spreadfirefox_RCS_favicon.ico" type="image/x-icon" />
    <style type="text/css" media="all">@import "/files/css/0791701a3e7ee97d019c1ebfbecb4671.css";</style>

    <!--[if lte IE 6]&gt;
    &lt;style type=&quot;text/css&quot; media=&quot;all&quot;&gt;@import &quot;sites/all/themes/spreadfirefox_RCS/ie6.css&quot;;&lt;/style&gt;
    &lt;![endif]-->

    <!--[if IE 7]&gt;
    &lt;style type=&quot;text/css&quot; media=&quot;all&quot;&gt;@import &quot;sites/all/themes/spreadfirefox_RCS/ie7.css&quot;;&lt;/style&gt;
    &lt;![endif]-->

    </head>



    [Added at Feb 11th 2008]

    after pushing on post to del.icio.us from Spread Firefox you'll be directed to this page

    this is the address
    http://del.icio.us/post?url=http%3A%2F%2Fwww.spreadfirefox.com%2F&title=Spread%20Firefox%20%7C%20The%20Home%20of%20Firefox%20Community%20Marketing&v=4

    but if you'll save this to your bookmarks ยป from this page (actually from here)

    http://del.icio.us/post?url=http%3A%2F%2Fwww.spreadfirefox.com%2F&title=Spread%20Firefox%20%7C%20The%20Home%20of%20Firefox%20Community%20Marketing&jump=no

    see the slight difference

    v=4, which will redirect me, after bookmarking, back to the page that I just saved
    jump=no, which is redirecting the user to his/her bookmarks, after saving...
    •  
      CommentAuthorcrash
    • CommentTimeFeb 8th 2008 edited
     
    • CommentAuthorMikster
    • CommentTimeFeb 8th 2008
     
    Many thanks!
    •  
      CommentAuthorcrash
    • CommentTimeFeb 8th 2008
     
    No problems, Sir!

    So, you did it already, or you're still working on it
    You are welcome to publish your results (or progress).

    L8r Mikster
    • CommentAuthorMikster
    • CommentTimeFeb 9th 2008
     
    Not yet... busy at work.

    Rest assured... once I've done it, I'll post...
    •  
      CommentAuthorcrash
    • CommentTimeFeb 9th 2008
     
    I assume that you didn't (just a joke).
    this post posted less than an hour after your post ;)
    • CommentAuthorMikster
    • CommentTimeFeb 9th 2008
     
    Here's a first cut that actually works:

    javascript:
    (function(){
    location.href='https://www.chipmark.com/AddLink?agent=ext&linkName='
    +encodeURIComponent(document.title)+
    '&linkPermission=private&linkURL='
    +encodeURIComponent(location.href)
    })()

    I need to add a nice icon, and a few other nips and tucks...
    •  
      CommentAuthorcrash
    • CommentTimeFeb 10th 2008 edited
     
    wow, complicated :\ I mean, Chipmark should fit the WebUI for bookmarklets support...

    and for the next time...
    javascript:(function(){location.href='https://www.chipmark.com/AddLink?agent=ext&linkName='+encodeURIComponent(document.title)+'&linkPermission=private&linkURL='+encodeURIComponent(location.href)})()
    javascript:(function(){location.href='https://www.chipmark.com/AddLink?agent=ext&linkName='+encodeURIComponent(document.title)+'&linkPermission=private&linkURL='+encodeURIComponent(location.href)})()
    •  
      CommentAuthorcrash
    • CommentTimeFeb 11th 2008 edited
     
    this is the HTML code
    <code style="overflow: auto; width: 95%;">javascript:(function(){location...</code>
    <pre style="overflow: auto; width: 95%;">javascript:(function(){location...</pre>
    •  
      CommentAuthorcrash
    • CommentTimeFeb 11th 2008
     
    This is what most of the Chipmark users need (I guess)

    A. Search for bookmarklets
    B. You'll see Jesse's Bookmarklets Site at http://www.squarefree.com/bookmarklets/
    C. Click on , which is attached to Jesse's Bookmarklets Site
    D. Can you make a bookmarklet which is able to reach to this page directly from Jesse's Bookmarklets Site
    •  
      CommentAuthorcrash
    • CommentTimeFeb 11th 2008 edited
     
    Mikster, I just added a few things to my 2nd post (this might be helpful...)
    • CommentAuthorChipsTest
    • CommentTimeMar 18th 2009
     
    bump!

    if you got the time...
    •  
      CommentAuthorabby
    • CommentTimeApr 18th 2009
     
    Chipmark Developer
    Hey guys - thanks, for all the research on the bookmarklet issues. no one on the developer team has any bookmarklets chipmarked, so we didn't even think to test them out. I apologize for our oversight.

    The forum thread has been added to our bug reporting system and we've got it scheduled as a feature for this next release.
    • CommentAuthorChipsTest
    • CommentTimeOct 23rd 2009
     
    bump!
    • CommentAuthorChipsTest
    • CommentTimeFeb 26th 2010 edited
     
    anymore news about it < http://www.chipmark.com:8082/blog/index.php/2008/05/13/chipmark-322-release/ >


    related:
    http://www.chipmark.com:8082/forum/comments.php?DiscussionID=87
    http://www.chipmark.com:8082/forum/comments.php?DiscussionID=242&page=1#Item_11
    • CommentAuthorsakuza
    • CommentTimeAug 17th 2010
     
    Our country is preparing great 1000 year Thang Long festival.
    Will be happy if everyone participated
    Welcome to Vietnam's


    vietnam tourism - travel vietnam -
    vietnam tours -