Templafy Google Drive Extension

Replaces the Google Drive New button with a Templafy Create Document button.

Templafy Google Drive Extensionคืออะไร?

Templafy Google Drive Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://templafy.com และคุณลักษณะหลักของมันคือ "Replaces the Google Drive New button with a Templafy Create Document button."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Templafy Google Drive Extension

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

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

                        Templafy’s infrastructure connects all company content across any enterprise tech stack to serve teams the right content exactly when they need it – wherever they are in their workflow.  

Templafy Google Extension brings the functionality of Templafy right inside the Google Workspace environment. The App provides users with an improved document creation workflow experience that helps secure brand and compliance without having to work outside of the Google Workspace environment.  

How does the Templafy Google Extension work? 
With Templafy Google extension, users creating a document from Google Drive, Docs, Slides, Sheets or your extension menu will see a new dialogue embedded in the workflow to help them get started creating the business document.  

Finally, documents created through the Templafy Google Extension automatically save back to the correct Drive folder, ensuring all business documents are stored where they’re supposed to be.  

Who will this benefit? 
Templafy Google Extension is designed to help users who work in Google Workspace and create documents as part of their daily tasks. The Extension will help increase efficiency in their workflow, ensure compliance and branding in the document itself, while automatically ensuring the document is stored back in the correct Drive folder.                    

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

ชื่อ Templafy Google Drive Extension Templafy Google Drive Extension
ID gnajoghocnoobgdjmpmhannfkccgkkmf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/templafy-google-drive-ext/gnajoghocnoobgdjmpmhannfkccgkkmf
คำอธิบาย Replaces the Google Drive New button with a Templafy Create Document button.
ขนาดไฟล์ 47.86 KB
จำนวนการติดตั้ง 276
เวอร์ชันปัจจุบัน 1.2.2
อัปเดตครั้งล่าสุด 2022-10-19
วันที่เผยแพร่ 2021-06-09
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://templafy.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.templafy.com
URL หน้าช่วยเหลือ https://support.templafy.com
URL หน้านโยบายความเป็นส่วนตัว https://www.templafy.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "name": "Templafy Google Drive Extension",
    "version": "1.2.2",
    "description": "Replaces the Google Drive New button with a Templafy Create Document button.",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/t_16px_blue.png",
        "32": "icons\/t_32px_blue.png",
        "48": "icons\/t_48px_blue.png",
        "128": "icons\/t_128px_blue.png",
        "512": "icons\/t_512px_blue.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/drive.google.com\/*"
            ],
            "js": [
                "utils.js",
                "menuItems.js",
                "button\/button.js"
            ],
            "css": [
                "button\/button.css"
            ]
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/document\/*"
            ],
            "js": [
                "utils.js",
                "template\/template.js"
            ]
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/spreadsheets\/*"
            ],
            "js": [
                "utils.js",
                "template\/template.js"
            ]
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/presentation\/*"
            ],
            "js": [
                "utils.js",
                "template\/template.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "button\/button.css",
        "icons\/*.svg",
        "icons\/*.png"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/t_16px_blue.png",
            "32": "icons\/t_32px_blue.png",
            "48": "icons\/t_48px_blue.png",
            "128": "icons\/t_128px_blue.png",
            "512": "icons\/t_512px_blue.png"
        },
        "default_title": "Templafy Google Drive",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "storage": {
        "managed_schema": "schema.json"
    }
}