Google Drive Images Redirector
When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.
Co to jest Google Drive Images Redirector?
Google Drive Images Redirector to rozszerzenie Chrome opracowane przez dvhb, a jego główną funkcją jest „When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.”.
Pobierz plik CRX rozszerzenia Google Drive Images Redirector
Pobierz pliki rozszerzeń Google Drive Images Redirector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | fndebjggeamljkklolciingbiankaobg |
| Oficjalny URL | https://chrome.google.com/webstore/detail/google-drive-images-redir/fndebjggeamljkklolciingbiankaobg |
| Opis | When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer. |
| Rozmiar pliku | 5.65 KB |
| Liczba instalacji | 57 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2015-07-29 |
| Data Publikacji | 2015-07-29 |
| Deweloper | dvhb |
| Typ Płatności | free |
| Strona Rozszerzenia | http://dvhb.ru |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Google Drive Images Redirector",
"description": "",
"version": "1.0.1",
"browser_action": {
"default_icon": ".\/icon-32.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"background"
],
"content_scripts": [
{
"matches": [
"*:\/\/drive.google.com\/*"
],
"js": [
"script.js"
]
}
]
} | |