Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 663 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 663 Bytes

The TextLinks Chrome Extension

TextLinks logo

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.

TextLinks demo gif

Technical notes

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.');
});