Yet Another Drag and Go FIX
Drag URL to open at Back/Front, Before/After; Drag text to 4 directions to search by using different search-engines.
Что такое Yet Another Drag and Go FIX?
Yet Another Drag and Go FIX - это расширение Chrome, разработанное jerry74, и его основная функция - "Drag URL to open at Back/Front, Before/After; Drag text to 4 directions to search by using different search-engines.".
Снимки экрана расширения
Скачать файл CRX расширения Yet Another Drag and Go FIX
Скачайте файлы расширений Yet Another Drag and Go FIX в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Source Code:https://github.com/jerry74/yadng
Original https://chrome.google.com/webstore/detail/yet-another-drag-and-go/hnoonkgmmnklbdehoepdjcidhjbncjmi Основная информация о расширении
| Название | |
| ID | ijbfjijnippekinigficbmbmfkiihpng |
| Официальный URL | https://chromewebstore.google.com/detail/yet-another-drag-and-go-f/ijbfjijnippekinigficbmbmfkiihpng |
| Описание | Drag URL to open at Back/Front, Before/After; Drag text to 4 directions to search by using different search-engines. |
| Размер файла | 115 KB |
| Количество установок | 7,000 |
| Текущая Версия | 0.3.4 |
| Последнее Обновление | 2021-08-29 |
| Дата публикации | 2014-02-07 |
| Рейтинг | 4.45/5 Всего 33 оценок |
| Разработчик | jerry74 |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Yet Another Drag and Go FIX",
"short_name": "yadng",
"version": "0.3.4",
"default_locale": "en",
"description": "__MSG_desc__",
"icons": {
"16": "img\/yadng_16.png",
"48": "img\/yadng_48.png",
"128": "img\/yadng_128.png"
},
"author": "hr6r",
"background": {
"scripts": [
"common.js",
"yadng.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*"
],
"js": [
"common.js",
"yadng.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage"
],
"options_page": "options.html"
} | |