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是由jerry74开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件
下载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"
} | |