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.
Was ist Yet Another Drag and Go FIX?
Yet Another Drag and Go FIX ist eine Chrome-Erweiterung, die von jerry74 entwickelt wurde, und ihr Hauptmerkmal ist "Drag URL to open at Back/Front, Before/After; Drag text to 4 directions to search by using different search-engines.".
Erweiterungsscreenshots
Yet Another Drag and Go FIX-Erweiterungs-CRX-Datei herunterladen
Laden Sie Yet Another Drag and Go FIX-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Source Code:https://github.com/jerry74/yadng
Original https://chrome.google.com/webstore/detail/yet-another-drag-and-go/hnoonkgmmnklbdehoepdjcidhjbncjmi Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ijbfjijnippekinigficbmbmfkiihpng |
| Offizielle URL | https://chromewebstore.google.com/detail/yet-another-drag-and-go-f/ijbfjijnippekinigficbmbmfkiihpng |
| Beschreibung | Drag URL to open at Back/Front, Before/After; Drag text to 4 directions to search by using different search-engines. |
| Dateigröße | 115 KB |
| Installationsanzahl | 7,000 |
| Aktuelle Version | 0.3.4 |
| Letztes Update | 2021-08-29 |
| Veröffentlichungsdatum | 2014-02-07 |
| Bewertung | 4.45/5 Insgesamt 33 Bewertungen |
| Entwickler | jerry74 |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
} | |