Selection Popup
Perform customizable actions (Search, Copy etc) on selected text.
Что такое Selection Popup?
Selection Popup - это расширение Chrome, разработанное mubaidr, и его основная функция - "Perform customizable actions (Search, Copy etc) on selected text.".
Снимки экрана расширения
Скачать файл CRX расширения Selection Popup
Скачайте файлы расширений Selection Popup в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Use commands (Copy or Go to Web address) on selected text or search the selected text using configurable search engines. You can manage search engines in options, their order of appearance, names etc Enable or disable available commands in the options. Or even use your styles using CSS to customize the look of popup.
Основная информация о расширении
Название | |
ID | ahecgidbcpeicikbcpaljaocofecilpd |
Официальный URL | https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd |
Описание | Perform customizable actions (Search, Copy etc) on selected text. |
Размер файла | 62.59 KB |
Количество установок | 1,000 |
Текущая Версия | 1.9.7 |
Последнее Обновление | 2020-02-11 |
Дата публикации | 2020-02-11 |
Рейтинг | 4.56/5 Всего 45 оценок |
Разработчик | mubaidr |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://github.com/mubaidr/selection-popup/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "css": [ ".\/contentScript.css" ], "js": [ ".\/contentScript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "description": "Perform customizable actions (Search, Copy etc) on selected text.", "icons": { "16": "assets\/icons\/icon_48.png", "128": "assets\/icons\/icon_128.png" }, "manifest_version": 2, "name": "Selection Popup", "options_ui": { "page": "options.html" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "tabs" ], "version": "1.9.7" } |