this repo has no description
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update README.md

+22 -11
+22 -11
README.md
··· 26 26 #### BASIC INSTALL 27 27 - Copy the contents of this repository to an online directory. That's all. You can start saving links. 28 28 29 - 30 - #### HIDE SAVE BUTTON 31 - - If you are using this for your personal use (you don't want anyone else saving on your page), you can uncomment this line in **script.js** file 32 - and add the code you want here AND as a variable in your browser's local storage. 33 - 34 - ` 35 - // const appcode = "notsosecretcode"; 36 - ` 37 - 38 - ![screenshot](screenshot_appcode.png) 39 - 40 29 #### SHOWCASE YOUR LINKS 41 30 - If you want to showcase your saved links, update the **mybookmarks.csv** file 42 31 ··· 48 37 49 38 **Option 2** (If you want your links saved on your browser's local storage) 50 39 - Add > Bulk Transfer > Paste the contents. 40 + 41 + #### CREATE BOOKMARKLET 42 + To be able to easily save bookmarks create a bookmarklet: 43 + - In your browser, create a new bookmark with "add woomark" () as Name 44 + - Paste the next code as URL. 45 + ``` 46 + javascript:(function(){ 47 + const url = encodeURIComponent(window.location.href); 48 + const title = encodeURIComponent(document.title); 49 + window.open(`https://YOURDOMAINGOESHERE.com/?title=${title}&url=${url}`, '_blank'); 50 + })(); 51 + ``` 52 + 53 + #### HIDE SAVE BUTTON 54 + - If you are using this for your personal use (you don't want anyone else saving on your page), you can uncomment this line in **script.js** file 55 + and add the code you want here AND as a variable in your browser's local storage. 56 + 57 + ` 58 + // const appcode = "notsosecretcode"; 59 + ` 60 + 61 + ![screenshot](screenshot_appcode.png) 51 62 52 63 ## Features 53 64 - Add/Delete links