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란 무엇입니까?

Repo for Notion은(는) http://repo.lu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Repo for Notion is a Chrome extension that allows you to highlight blocks of texts in the Notion.so app."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Repo for Notion 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Repo for Notion Repo for Notion
ID mkmpjdbmicikkfjfggkcpokonnmigfki
공식 URL https://chrome.google.com/webstore/detail/repo-for-notion/mkmpjdbmicikkfjfggkcpokonnmigfki
설명 Repo for Notion is a Chrome extension that allows you to highlight blocks of texts in the Notion.so app.
파일 크기 36.54 KB
설치 횟수 338
현재 버전 1.3.10
최근 업데이트 2023-02-03
출시 날짜 2022-01-27
평점 3.25/5 총 4 개의 평점
개발자 http://repo.lu
이메일 [email protected]
확장 프로그램 웹 사이트 https://repo.lu/
개인정보 보호 정책 페이지 URL https://repo-notion.taogasnier.com/Privacy-Policy-e16d5c2c86a845b8b39df849190061bd
지원되는 언어 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"
        }
    }
}