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 |
| Eメール | [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"
} | |