Repo for Notion

Repo for Notion is a Chrome extension that allows you to highlight blocks of texts in the Notion.so app.

Repo for Notion là gì?

Repo for Notion là một tiện ích mở rộng Chrome được phát triển bởi http://repo.lu, và tính năng chính của nó là "Repo for Notion is a Chrome extension that allows you to highlight blocks of texts in the Notion.so app.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Repo for Notion

Tải xuống các tệp mở rộng Repo for Notion 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

                        Imagine a research repository in your main note-taking app, Notion.so... for free.

With our extension, add a tagging feature in Notion, with which you can highlight blocs of text and centralize them on a database (your repository). 
Perfect for managing your customers knowledge, users researches, meeting notes and more on a research repository.

A powerful, central place to store all your highlights :
• Never lose a customer insight and share it across your multiples reports.
• Get organized and break down silos between your teams.
• Built-in tags make it easy to organize your insights and collaborate with others on the same structure. 
• Keep everything organized and in one place, so you don't have to search for yesterday's meeting notes or researches anymore - they're all in your repository.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Repo for Notion Repo for Notion
ID mkmpjdbmicikkfjfggkcpokonnmigfki
URL Chính Thức https://chrome.google.com/webstore/detail/repo-for-notion/mkmpjdbmicikkfjfggkcpokonnmigfki
Mô tả Repo for Notion is a Chrome extension that allows you to highlight blocks of texts in the Notion.so app.
Kích Thước Tệp 36.54 KB
Số Lần Cài Đặt 338
Phiên Bản Hiện Tại 1.3.10
Cập Nhật Lần Cuối 2023-02-03
Ngày Phát Hành 2022-01-27
Đánh Giá 3.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển http://repo.lu
Email [email protected]
Trang Web Mở Rộng https://repo.lu/
URL Trang Chính Sách Bảo Mật https://repo-notion.taogasnier.com/Privacy-Policy-e16d5c2c86a845b8b39df849190061bd
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Repo for Notion",
    "version": "1.3.10",
    "description": "Repo for Notion is a Chrome extension that allows you to highlight blocks of texts in the Notion.so app.",
    "short_name": "Repo for Notion",
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting",
        "webNavigation"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.notion.so\/*",
            "*:\/\/app.repo.lu\/*"
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.notion.so\/*",
                "*:\/\/app.repo.lu\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false
        }
    ],
    "action": {
        "default_title": "Repo for Notion",
        "default_icon": {
            "16": "icons\/16x16.png",
            "32": "icons\/32x32.png",
            "48": "icons\/48x48.png",
            "128": "icons\/128x128.png"
        }
    }
}