Notion Forms

Hide Notion widget border

Notion Formsคืออะไร?

Notion Forms เป็นส่วนขยายของ Chrome ที่พัฒนาโดย savetonotion.so และคุณลักษณะหลักของมันคือ "Hide Notion widget border"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion Forms

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

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

                        ≡ Features

* Hide Notion Widget border to put widgets inside Notion without noticing it
* Copy easily your Notion credentials by clicking on a button.

≡ Privacy

* The extension does NOT collect any data or send data to third party.                    

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

ชื่อ Notion Forms Notion Forms
ID lmlcnllajejljjffbfnpcmeldomdcfjn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/notion-forms/lmlcnllajejljjffbfnpcmeldomdcfjn
คำอธิบาย Hide Notion widget border
ขนาดไฟล์ 16.99 KB
จำนวนการติดตั้ง 856
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2020-12-08
วันที่เผยแพร่ 2020-12-08
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา savetonotion.so
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Forms",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Hide Notion widget border",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.notion.so\/*"
            ],
            "css": [],
            "js": [
                "src\/custom.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "https:\/\/*.notion.so\/*",
        "cookies"
    ],
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_title": "Notion Forms"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-...='; object-src 'self'"
}