A Chrome extension for text links, triggered by "go", spacebar or tab, and then the text keyword you've set up. Be sure to pin the extension to your extension bar, and click the TextLinks logo.
To list every saved TextLink in the address bar, type go, press Space to
activate TextLinks, and press Space once more.
When you click the TextLinks logo, the current page's URL is filled in for you. Enter a shortcut name and select Save to create a new TextLink.
To see the data in storage:
chrome.storage.sync.get(null, function(data) { console.log(data); });
To see just keysCache:
chrome.storage.sync.get('keysCache', function(data) { console.log(data); });
To clear all storage:
chrome.storage.sync.clear(function() {
console.log('All data cleared.');
});
