PDFAI.io - Best AI PDF chrome extension

Chat, summarize, & engage with PDFs effortlessly! AI-powered extension for interactive document interaction.

PDFAI.io - Best AI PDF chrome extension란 무엇입니까?

PDFAI.io - Best AI PDF chrome extension은(는) haitham.mousaa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chat, summarize, & engage with PDFs effortlessly! AI-powered extension for interactive document interaction."입니다.

확장 프로그램 스크린샷

screenshot

PDFAI.io - Best AI PDF chrome extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Efficiently read and interact with PDFs while seamlessly generating and answering questions about their content                    

확장 프로그램 기본 정보

이름 PDFAI.io - Best AI PDF chrome extension PDFAI.io - Best AI PDF chrome extension
ID jocmhahiccpckdaffdokgaijcdofgpff
공식 URL https://chromewebstore.google.com/detail/pdfaiio-best-ai-pdf-chrom/jocmhahiccpckdaffdokgaijcdofgpff
설명 Chat, summarize, & engage with PDFs effortlessly! AI-powered extension for interactive document interaction.
파일 크기 236 KB
설치 횟수 136
현재 버전 0.0.1
최근 업데이트 2024-01-02
출시 날짜 2024-01-02
개발자 haitham.mousaa
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://pdfai.io/
도움말 페이지 URL https://www.pdfai.io/chrome-extension
개인정보 보호 정책 페이지 URL https://www.pdfai.io/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "PDFAI.io  - Best AI PDF chrome extension",
    "version": "0.0.1",
    "description": "Chat, summarize, & engage with PDFs effortlessly! AI-powered extension for interactive document interaction.",
    "permissions": [
        "storage",
        "activeTab",
        "webRequest",
        "scripting"
    ],
    "options_ui": {
        "page": "src\/pages\/options\/index.html"
    },
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-128.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.pdf",
                "file:\/\/*\/*.pdf",
                "https:\/\/drive.google.com\/file\/d\/*\/view*",
                "https:\/\/www.dropbox.com\/home?preview=*.pdf*",
                "https:\/\/www.dropbox.com\/preview\/*.pdf*",
                "https:\/\/www.dropbox.com\/scl\/fi\/*\/*.pdf*"
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "contentStyle.css"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        ""
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.app.pdfai.io\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/svg\/*.svg",
                "contentStyle.css",
                "icon-128.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}