Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/callumacrae/socialsharesbookmarklet
A bookmarklet to show you how many times something has been shared.
https://github.com/callumacrae/socialsharesbookmarklet
Last synced: 20 days ago
JSON representation
A bookmarklet to show you how many times something has been shared.
- Host: GitHub
- URL: https://github.com/callumacrae/socialsharesbookmarklet
- Owner: callumacrae
- Created: 2014-02-19T19:43:16.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-19T20:06:36.000Z (almost 11 years ago)
- Last Synced: 2024-12-17T05:29:30.164Z (23 days ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Social shares bookmarklet
This is the repository for a bookmarklet which shows you how many times a link has been shared when you hover the mouse over it.
To use the bookmarklet, add the following as a bookmark:
```
javascript:(function(){var s=document.createElement('script');s.src='http://macr.ae/stuff/ssb/script.min.js';document.body.appendChild(s);})();
```Unminified, it does the following:
```javascript
(function () {
var s = document.createElement('script');
s.src = 'http://macr.ae/stuff/ssb/script.min.js';
document.body.appendChild(s);
})();
```