Questions tagged [bookmarks]

Bookmarks are a browser storage facility for URLs. Use this tag only for programming-related questions about bookmarks. Questions about using a browser are off-topic on Stack Overflow.

Bookmarks can be used to store URLs to all browser supported URI schemes. Here are the most common:

  • http:
  • https:
  • file:
  • ftp:
  • javascript: (bookmarklets)
  • about:

Here are some browser specific URI schemes:

  • chrome: (Google Chrome)
  • resource: (Mozilla Firefox)
  • jar: (Mozilla Firefox)
1114 questions
0
votes
2 answers

Access pdf bookmarks from another browser tab or window using iText

I am relatively new to itext. I am wondering if this is even possible. I have a web app that includes a display button and links to bookmarks on a pdf on a html page. On clicking on the display button, the pdf will be streamed to another tab using…
Greg
  • 57
  • 1
  • 2
  • 7
0
votes
1 answer

creating a full html file out of webloc in a batch mode

I've got over 400 bookmarks saved as .webloc files. I'd like to move them to the iPhone's goodReader app. goodReader cannot open webloc files. It can sork with pdf, html but not webloc. Do you know of a way or a program that would take a folder as…
0
votes
1 answer

pdf file generated by Doxygen and MikTex get wrong bookmarker for subgroup modules

I defined a group and two sub groups in a .h file: /** * @defgroup groupDriver Drivers * @ingroup groupDriver * @{ * @defgroup groupSPI SPI * @defgroup groupUART UART * @} */ And then use doxygen and Miktex to generate a…
0
votes
1 answer

Write JS script to import bookmarks from excel file with links

Can i import the web links from excel file (in single column) or text file to the chrome bookmarks's new folder with javascript? If it is possible, where can i get that script?
Rizwan Ali
  • 113
  • 2
  • 12
0
votes
0 answers

Using Excel VBA: Deleting Blank Pages on a Word Document if an Event Occurs

So what I'm trying to do is on an open word document using excel vba, I'm trying to go through each page of the word document and if the length of the range on any page is less than or equal to 20 (20 being the length of the subtitle that is…
Jack Henderson
  • 93
  • 1
  • 12
0
votes
1 answer

dynamic bookmarks in Firefox

I have a bookmark in my Firefox like this: http://foo.bar/index.html?year=2017&month=7&day=21&group=11,21,31&type=something My question is whether it's possible to dynamically assign year, month and day in such bookmarked URL? I don't want to change…
0
votes
2 answers

How do I create a bookmark that inputs current date and time (considering timezone)?

In my company I often deal with coworkers and customers across multiple timezones. I currently use the website https://www.timeanddate.com to look at the timezone. However, when i save the URL as a bookmark it is only for the given date that it was…
Eflmang
  • 3
  • 3
0
votes
0 answers

Change text style within OpenXML Bookmarks

All, I am using OpenXML to automatically insert text into bookmarks. The following is working phenomenally: Body body = mainPart.Document.GetFirstChild(); var bookMarkStarts = body.Descendants(); var bookMarkEnds =…
AMAR PANRAY
  • 351
  • 3
  • 8
0
votes
1 answer

Create a bookmark between 2 different views in MVC

I have two views; Index and Giftworx. In the Index I have icons and when each is clicked it should direct user to a specific point in the GiftWorx page. I've tried the below code but it didnt work. Any help would be appreciated. Index View:
user4857063
0
votes
2 answers

How to store and retrieve data using local storage in ionic 2

HTML codes Make Favourite Typescript codes makeFavorite(favData){ this.favStorage.set('id',favData.id); //Storing data…
Mithun Nath
  • 513
  • 1
  • 5
  • 12
0
votes
1 answer

How can I use a bookmark with javascript to alter a website css

I'm not too good with colours and on a moodle course I'm tutoring I have a really difficult time spotting the difference in unread and read posts. The unread posts are highlighted but the colour is too similar to the background for me. Previously…
Oliver Burdekin
  • 1,098
  • 2
  • 17
  • 36
0
votes
1 answer

android java sdk, loading bookmarks into spinner?

The spinner comes up with but with nothing in it what am I doning wrong? cbookmarks = Browser.getAllBookmarks(getContentResolver()); SimpleCursorAdapter ABM = new SimpleCursorAdapter(this,android.R.layout.simple_spinner_item, cbookmarks,new…
Hell.Bent
  • 1,667
  • 9
  • 38
  • 73
0
votes
0 answers

Delete PDF bookmarks using itextsharp

I use the itextsharp library to remove unwanted bookmarks from PDF files. I developed the following code: private static void RemovePDFbookmarks(string filein, string fileout) { PdfReader pdfReader = new PdfReader(filein); …
Chris
  • 1
  • 3
0
votes
1 answer

Insert Section break on bookmark position of word through Excel macro

I'm trying to create an automated report. So far I've managed to be able to create the word document from a template full of bookmarks, insert specific data from excel into the correct positions and finally to save the file as .docx and a random…
aldebaran
  • 21
  • 2