GitXplorerGitXplorer
b

TextLinks

public
1 stars
0 forks
1 issues

Commits

List of commits on branch main.
Unverified
ed8776ebbf7bdd7de9d74c0c3fd2c4d8c87bdd9b

spacing

bbaogorek committed a year ago
Unverified
efe36bd9969196f0a0836b9100b006c7a322c948

gif added to README.md

bbaogorek committed a year ago
Unverified
12269d9b4cfe8eea7c8c2a1ef8d3aa3bb6df576e

Bringing manifest description under the character limit

bbaogorek committed a year ago
Unverified
f16ee95b44b98d3f8c42af54ad310fa9b49e9274

Version 1.1

bbaogorek committed a year ago
Unverified
ee79cd624b1a7cfa88ca84f5249e7802e296cc9c

working app

bbaogorek committed a year ago
Verified
166e84d1fb21d8f40278dfc1542b1233a000975a

Initial commit

bbaogorek committed a year ago

README

The README file for this repository.

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