Google Drive Images Redirector
When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.
Google Drive Images Redirectorとは何ですか?
Google Drive Images Redirectorはdvhbによって開発されたChromeの拡張機能で、その主な機能は「When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.」です。
Google Drive Images Redirector拡張機能のCRXファイルをダウンロード
Google Drive Images Redirector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.
拡張機能の基本情報
名前 | |
ID | fndebjggeamljkklolciingbiankaobg |
公式URL | https://chrome.google.com/webstore/detail/google-drive-images-redir/fndebjggeamljkklolciingbiankaobg |
説明 | When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer. |
ファイルサイズ | 5.65 KB |
インストール数 | 57 |
現在のバージョン | 1.0.1 |
最終更新日 | 2015-07-29 |
公開日 | 2015-07-29 |
開発者 | dvhb |
支払い方法 | free |
拡張機能のウェブサイト | http://dvhb.ru |
対応言語 | 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" ] } ] } |