SaveAs
SaveAs for Google Docs
SaveAs là gì?
SaveAs là một tiện ích mở rộng Chrome được phát triển bởi Jhaniv LTD., và tính năng chính của nó là "SaveAs for Google Docs".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SaveAs
Tải xuống các tệp mở rộng SaveAs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
SaveAs brings the familiar "SaveAs" functionality to your Google Docs.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SaveAs |
ID | dfagmpodnkdapdbjhjmenkeilmmefkal |
URL Chính Thức | https://chromewebstore.google.com/detail/saveas/dfagmpodnkdapdbjhjmenkeilmmefkal |
Mô tả | SaveAs for Google Docs |
Kích Thước Tệp | 177 KB |
Số Lần Cài Đặt | 42 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2016-06-20 |
Ngày Phát Hành | 2016-06-20 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Jhaniv LTD. |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SaveAs", "short_name": "SaveAs", "manifest_version": 2, "version": "1.3", "minimum_chrome_version": "29", "description": "SaveAs for Google Docs", "background": { "scripts": [ "background.js", "gdocs.js", "jq.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/document\/*", "https:\/\/docs.google.com\/spreadsheets\/*" ], "js": [ "jq.js", "main.js", "mn.js", "gdocs.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "statusbar.html" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "tabs", "identity", "https:\/\/ssl.gstatic.com\/", "https:\/\/www.googleapis.com\/", "https:\/\/accounts.google.com\/" ], "oauth2": { "client_id": "681906034548-smp6b665oaojlnlu4ohlqpsofr05q61v.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/drive", "https:\/\/www.googleapis.com\/auth\/drive.file", "https:\/\/www.googleapis.com\/auth\/drive.metadata", "https:\/\/www.googleapis.com\/auth\/drive.scripts" ] }, "browser_action": { "name": "test", "icons": [ "icon.png" ] } } |