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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Source Code:https://github.com/jerry74/yadng Original https://chrome.google.com/webstore/detail/yet-another-drag-and-go/hnoonkgmmnklbdehoepdjcidhjbncjmi
확장 프로그램 기본 정보
이름 | Yet Another Drag and Go FIX |
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" } |