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 |
| 官方網址 | 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"
} | |