Username linker for www.fetlife.com
Transform @handle mentions into clickable links
Что такое Username linker for www.fetlife.com?
Username linker for www.fetlife.com - это расширение Chrome, разработанное Marlinspike7, и его основная функция - "Transform @handle mentions into clickable links".
Скачать файл CRX расширения Username linker for www.fetlife.com
Скачайте файлы расширений Username linker for www.fetlife.com в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Known bugs: -when editing a "linked" text box (caption, etc), the entire HTML tag for the link shows up. This is mostly a fetlife bug, but I will attempt to fix it on my end. -@OP or @me get directed to the literal profiles instead to the original poster or the person who made the comment/post -Sometimes pictures down-size slightly with the extension enabled. I believe a new HTML element is getting created at the end of the caption, which causes the page to re-arrange content
Основная информация о расширении
Название | Username linker for www.fetlife.com |
ID | alphbechbaaplgamiimnkjnhhecgeaeo |
Официальный URL | https://chromewebstore.google.com/detail/username-linker-for-wwwfe/alphbechbaaplgamiimnkjnhhecgeaeo |
Описание | Transform @handle mentions into clickable links |
Размер файла | 4.79 KB |
Количество установок | 24 |
Текущая Версия | 2.0.1 |
Последнее Обновление | 2016-01-26 |
Дата публикации | 2016-01-26 |
Разработчик | Marlinspike7 |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Username linker for www.fetlife.com", "version": "2.0.1", "manifest_version": 2, "description": "Transform @handle mentions into clickable links", "permissions": [ "https:\/\/*.fetlife.com\/*", "webRequest", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/*.fetlife.com\/*" ], "js": [ "script.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true } } |