Hide OkCupid Likes
This extension allows users to customize the display of OkCupid likes.
Что такое Hide OkCupid Likes?
Hide OkCupid Likes - это расширение Chrome, разработанное shanzilla, и его основная функция - "This extension allows users to customize the display of OkCupid likes.".
Снимки экрана расширения
Скачать файл CRX расширения Hide OkCupid Likes
Скачайте файлы расширений Hide OkCupid Likes в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Even though OkCupid's Like feature is hidden behind a paywall the number of inaccessible Likes is still prominently displayed to people who don't have A-List accounts. This extension allows you to remove or de-emphasize the Like count that's shown in OkCupid's navigation.
Основная информация о расширении
Название | |
ID | mpnlfccfhpkgfiofaajolmjcofbhfdbj |
Официальный URL | https://chrome.google.com/webstore/detail/hide-okcupid-likes/mpnlfccfhpkgfiofaajolmjcofbhfdbj |
Описание | This extension allows users to customize the display of OkCupid likes. |
Размер файла | 19.93 KB |
Количество установок | 38 |
Текущая Версия | 2.0.2 |
Последнее Обновление | 2020-09-02 |
Дата публикации | 2020-05-05 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | shanzilla |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/shanzilla/hide-okcupid-likes |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide OkCupid Likes", "version": "2.0.2", "description": "This extension allows users to customize the display of OkCupid likes.", "icons": { "128": "icon128-v2.png" }, "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "tabs", "storage", "webNavigation" ], "content_scripts": [ { "js": [ "scripts.js" ], "css": [ "style.css" ], "matches": [ "https:\/\/www.okcupid.com\/*" ], "run_at": "document_start", "all_frames": true } ], "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |