Firefox support coming soon...
Pin Tweet to IPFS is a web extension targetting less-technical users who wish to archive Tweets in a verifiable way. It uses IPFS, WebRecorder, and web3.storage to achieve this.
We are using a new tool, "save tweet now" from the WebRecorder team to create a verifiable WebArChiveZip files of tweets. We then assist the user in uploading these "WACZ" files to the IPFS network via web3.storage. Here users can store all of their archived tweets in one place, and easily access them via their own IPFS node or other pinning services.
- Check if your Node.js version is >= 19.
- Clone this repository.
- Run
npm install
to install the dependencies. - Run
npm run build
- Load your extension on Chrome following:
- Access
chrome://extensions/
- Check
Developer mode
- Click on
Load unpacked extension
- Select the
build
folder.
- Access
Pin.Tweet.to.IPFS.Demo.12_15_2022.-.Made.with.Clipchamp.mp4
Basic functionality can be achieved in a bookmarklet
javascript:(function(){
const url = document.location.href.match(/https:\/\/twitter.com\/(\w){1,15}\/status\/(\d)*/)[0];
if (url) window.open(`https://webrecorder.github.io/save-tweet-now/#url=${url}&autoupload=1`);
})();
Made with ❤️ by Justice Engineering & Trigram