Menu
  • HOME
  • TAGS

Android Browser.BOOKMARKS_URI does not work on all devices. How to find out the correct uri for a given device?

android,android-contentprovider,bookmarks,android-browser

Is there a way to 'list' all available content URI (content://...) on a devices? There's an opensource APP called "Content Provider Helper" in Play Store that can list all available content:// URI on the device. It uses PackageManager.GET_PROVIDER Here's the respective class that searches all available content provider: SearchProviderTask.java...

Add a bookmark ,use Javascript ,not a url

javascript,bookmarks

You can do that by adding this to your favorites: javascript:(function(){document.location.href="http://stackoverflow.com";})() The correct name for this kind of bookmarks is favelets. For some more inspiration check out this collection of favelets....

Bookmark Icon for a website

icons,favicon,bookmarks

You need different icons: Safari on Mac OS Yosemite (apparently, what you are using): it takes the Apple Touch icon. At least, make sure to create a 180x180 icon. Chrome: since a few versions, Chrome takes the Open Graph image (the same icon you use to indicate to Facebook which...

How can I set the favicon of a bookmark through the chrome.bookmark api?

google-chrome-extension,bookmarks

No, you cannot change a favicon through the chrome.bookmarks API. There is a feature request at crbug.com/59519 though.

Bookmark error when using latex to generate pdf file

latex,bookmarks,ieee

Heiko Oberdiek (hyperref's author) said that there should not be any bookmarks in the PDF if the bookmark=false option really is being used and to check the .log file to ensure this is so. He can help further once the question is moved to tex.stackexchange.com Also, try compiling the bare_conf.tex...

Bookmark to check published date

javascript,url,bookmarks

I managed to figure it out on my own. I use this code to get to see the publish date in google. You can save it as Bookmark to check. It comes very handy to fill your APA details. javascript:void(location.href='http://google.com/search?q=inurl:'+escape(location.href))+'&as_qdr=y15'...

vba Word: Why can Word use special chars in bookmark creation, and I cant?

vba,ms-word,bookmarks

IMO Word is "cheating", either by breaking its own rules for bookmark names, or by denying you the full range of names that it allowed by the Specification. If you go back to the early ECMA standard for .docx, a bookmark's name is defined as an ST_String, which is a...

Add Context Menu command in Atom.io

contextmenu,bookmarks,atom-editor

Add this to your init.coffee file: atom.contextMenu.add { 'atom-text-editor': [{ label: 'Bookmark', command: 'my-package:toggle' }] } ...

How to read Google Chrome bookmarks externally?

google-chrome,bookmarks

Do you want the raw links or the bookmarks transfered to another browser. If you want the bookmarks for another browser, use the import option on that particular browser. IE and FF gives you the option on first run to import 'local' bookmarks from another browser. As for the raw...

How to respond to multiple bookmark operations in Chrome?

javascript,google-chrome,asynchronous,google-chrome-extension,bookmarks

Of course I messed up the function signature (even for the 10th time), there is nothing wrong with the direct callback. This way, it works (function extracted for clearer code): this.isValidParam = function(param) { if (param !== undefined && param !== null) return true; return false; }; this.chromeMoveCallback = function(elementIds,...

How to retrieve and display browser history and bookmarks in browser application [duplicate]

android,android-listview,browser-history,bookmarks

ArrayList mTitles=new ArrayList(); ArrayList mUrls=new ArrayList(); public void getBrowserHist() { Cursor mCur = managedQuery(Browser.BOOKMARKS_URI, Browser.HISTORY_PROJECTION, null, null, null); mCur.moveToFirst(); if (mCur.moveToFirst() && mCur.getCount() > 0) { while (mCur.isAfterLast() == false) { Log.v("titleIdx", mCur .getString(Browser.HISTORY_PROJECTION_TITLE_INDEX)); Log.v("urlIdx", mCur .getString(Browser.HISTORY_PROJECTION_URL_INDEX)); mCur.moveToNext(); } } } Add below uses-permission into your manifest file....