Copy Notes, Text, Screenshots to Google Drive Test

Copy text, images, notes and screenshots to Google Drive and manage Drive directly via Chrome Toolbar - web research tool.

Copy Notes, Text, Screenshots to Google Drive Testคืออะไร?

Copy Notes, Text, Screenshots to Google Drive Test เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://web-research-assistant.com และคุณลักษณะหลักของมันคือ "Copy text, images, notes and screenshots to Google Drive and manage Drive directly via Chrome Toolbar - web research tool."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Notes, Text, Screenshots to Google Drive Test

ดาวน์โหลดไฟล์ส่วนขยาย Copy Notes, Text, Screenshots to Google Drive Test ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Easily save text and images found on the web to your Google Docs via right-click in order to streamline your research.

Seamlessly:
1. Copy-paste Text and Images to your Google Docs via right-click and "Ctrl/Command-B" hot-key
2. Manage Google Drive vie Chrome Toolbar (select, create & open Folders and Docs)
3. Save Notes & Screenshots to Google Docs


Data Privacy
The extension:
1. only accesses data it strictly needs to perform its main function
    - It accesses information from users' Google Drive in order for users to select and create new 
    folders and documents to save text and images to​
    - It accesses information found on the webpages the user browses to store that information 
    to the Google Drive documents selected by the user
2. does not store, share or transmit in any way any Google user data
3. does not use or transfer the data for serving ads, retargeting, personalized, or interest-based advertising
4. does not allow any other humans to read the data

Home page and Privacy Policy:
https://www.web-research-assistant.com/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Copy Notes, Text, Screenshots to Google Drive Test Copy Notes, Text, Screenshots to Google Drive Test
ID cbgcnknaeooekaddpjnahigdjlpggfoj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-notes-text-screensho/cbgcnknaeooekaddpjnahigdjlpggfoj
คำอธิบาย Copy text, images, notes and screenshots to Google Drive and manage Drive directly via Chrome Toolbar - web research tool.
ขนาดไฟล์ 118 KB
จำนวนการติดตั้ง 181
เวอร์ชันปัจจุบัน 1.0.13
อัปเดตครั้งล่าสุด 2024-03-06
วันที่เผยแพร่ 2021-03-20
คะแนน 4.60/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา https://web-research-assistant.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.web-research-assistant.com/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Notes, Text, Screenshots to Google Drive Test",
    "version": "1.0.13",
    "description": "Copy text, images, notes and screenshots to Google Drive and manage Drive directly via Chrome Toolbar - web research tool.",
    "manifest_version": 3,
    "oauth2": {
        "client_id": "831659281445-e40g61n472p2pq8l4d78epd5ibvlimc6.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive",
            "https:\/\/www.googleapis.com\/auth\/documents"
        ]
    },
    "action": {
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script_SelScreenShot.js"
            ]
        }
    ],
    "permissions": [
        "identity",
        "storage",
        "contextMenus",
        "tabs",
        "activeTab",
        "desktopCapture",
        "scripting",
        "notifications"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "hk_save_text_to_doc": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            },
            "description": "Save selected text to doc"
        },
        "hk_save_title_to_doc": {
            "suggested_key": {
                "default": "Ctrl+Shift+B",
                "mac": "Command+Shift+B"
            },
            "description": "Save selected text to doc as title"
        },
        "hk_take_screenshot": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Take screenshot"
        }
    }
}