Replace Blockchain with Spreadsheet
Replaces all instances of the word "blockchain" with the phrase "mulitple copies of a giant Excel spreadsheet".
Что такое Replace Blockchain with Spreadsheet?
Replace Blockchain with Spreadsheet - это расширение Chrome, разработанное Unknown, и его основная функция - "Replaces all instances of the word "blockchain" with the phrase "mulitple copies of a giant Excel spreadsheet".".
Снимки экрана расширения
Скачать файл CRX расширения Replace Blockchain with Spreadsheet
Скачайте файлы расширений Replace Blockchain with Spreadsheet в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
WHAT: This is a Chrome browser extension that can help readers contextualize news stories with hype about multiple copies of a giant excel spreadsheet technology, by reminding you that multiple copies of a giant excel spreadsheet is, in essense, a giant Excel spreadsheet. WHY: For fun. SPECIAL THANKS: Twitter user @mims (Christopher Mims) for the suggestion to make a "browser extension that replaces "blockchain" with "mulitple copies of a giant Excel spreadsheet." For example, "multiple copies of a giant excel spreadsheet to revolutionize journalism." Thanks to Tom Maxwell for the tutorial and template code for this project! Enjoy! -CBL
Основная информация о расширении
Название | Replace Blockchain with Spreadsheet |
ID | johdgapbhomlhcflancninpeafocpopn |
Официальный URL | https://chromewebstore.google.com/detail/replace-blockchain-with-s/johdgapbhomlhcflancninpeafocpopn |
Описание | Replaces all instances of the word "blockchain" with the phrase "mulitple copies of a giant Excel spreadsheet". |
Размер файла | 3.59 KB |
Количество установок | 110 |
Текущая Версия | 1.1 |
Последнее Обновление | 2018-03-07 |
Дата публикации | 2018-03-07 |
Рейтинг | 5.00/5 Всего 10 оценок |
Разработчик | Unknown |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Replace Blockchain with Spreadsheet", "description": "Replaces all instances of the word \"blockchain\" with the phrase \"mulitple copies of a giant Excel spreadsheet\".", "version": "1.1", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |