Flappypedia

Flappypedia is a product that makes knowledge alive and within reach.

Flappypedia란 무엇입니까?

Flappypedia은(는) flappypedia에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Flappypedia is a product that makes knowledge alive and within reach."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Flappypedia 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        There would popup a detailed card when we hover to a word/term/slang that is noted in Flappy space.

HOW TO RUN IT?
1. Add cards in the console

Record new words/slang/abbr on the console (https://flappypedia.com). The recording flow is simple, like writing a “light wiki”.
(Every new user is in our official space by default, in which we have recorded a lot of common glossaries. We will keep adding new terms in this space.)

2.The knowledge will fly to you

Once a word/slang/abbr is recorded in space, each time the space members meet this word in docs, gmails, or confluence pages, the word would be underlined. And when users hover over it, a card with details will appear nearby.

WHAT PLATFORMS DOES FLAPPYPEDIA WORK NOW?

Flappypedia now supports 3 apps: Google Doc, Gmail and Confluence. We are extending more apps.
https://flappypedia.com                    

확장 프로그램 기본 정보

이름 Flappypedia Flappypedia
ID gpcjooddoiccmaghdkoeccedndgjbpij
공식 URL https://chromewebstore.google.com/detail/flappypedia/gpcjooddoiccmaghdkoeccedndgjbpij
설명 Flappypedia is a product that makes knowledge alive and within reach.
파일 크기 224 KB
설치 횟수 42
현재 버전 0.0.7
최근 업데이트 2022-10-30
출시 날짜 2022-10-20
평점 5.00/5 총 2 개의 평점
개발자 flappypedia
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Flappypedia",
    "description": "Flappypedia is a product that makes knowledge alive and within reach.",
    "version": "0.0.7",
    "default_locale": "en",
    "background": {
        "service_worker": "\/background.js"
    },
    "permissions": [
        "activeTab",
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/flappypedia.com\/*"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/flappy_logo_x1.png",
        "48": "icons\/flappy_logo_x2.png",
        "128": "icons\/flappy_logo_x3.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/content.js",
                "\/injectors\/google_docs_injector.js"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "injector.js"
            ],
            "matches": [
                "*:\/\/docs.google.com\/document\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.js",
                "*.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}