Priority Matrix for Chrome

Chrome Extension to turn web links into Priority Matrix items. Save PDF files, and context menu with other options.

Priority Matrix for Chrome란 무엇입니까?

Priority Matrix for Chrome은(는) https://appfluence.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Extension to turn web links into Priority Matrix items. Save PDF files, and context menu with other options."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Priority Matrix for Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Priority Matrix helps you prioritize, focus, and work smarter. This extension lets you create tasks with just a click while your browsing the web, without having to switch apps. Your newly created data will show up in your Priority Matrix inbox the next time you open the app.

Most recently, we added a PDF integration that lets you send any such document to your PM account with one click.

Some ideas of use
- Save and remind web data (links, images, pdf files) to read later.
- Improve email productivity.
- Share data among collaborators for teams of any size.

Work on what matters!

PS: Make sure cookies from appfluence.com are accepted in your browser, so that the extension works properly.

Privacy policy: https://appfluence.com/privacy/
Terms of use: https://appfluence.com/eula/                    

확장 프로그램 기본 정보

이름 Priority Matrix for Chrome Priority Matrix for Chrome
ID dboboillnhldihjigadainihehfoackd
공식 URL https://chromewebstore.google.com/detail/priority-matrix-for-chrom/dboboillnhldihjigadainihehfoackd
설명 Chrome Extension to turn web links into Priority Matrix items. Save PDF files, and context menu with other options.
파일 크기 569 KB
설치 횟수 8,836
현재 버전 1.8.34
최근 업데이트 2023-12-17
출시 날짜 2020-05-04
평점 4.56/5 총 75 개의 평점
개발자 https://appfluence.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://appfluence.com
도움말 페이지 URL https://appfluence.com/help
개인정보 보호 정책 페이지 URL https://appfluence.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Priority Matrix for Chrome",
    "short_name": "PM-Chrome",
    "description": "Chrome Extension to turn web links into Priority Matrix items. Save PDF files, and context menu with other options.",
    "version": "1.8.34",
    "author": "Appfluence Inc",
    "options_ui": {
        "page": "options\/Options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "images\/PM16.png",
        "48": "images\/PM48.png",
        "128": "images\/PM128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "images\/PM.png",
        "default_popup": "popup\/popup.html",
        "default_title": "Priority Matrix"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.pdf",
                "*:\/\/*\/*.pdf?*",
                "file:\/\/*\/*.pdf"
            ],
            "js": [
                "contentscript\/pdf.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "background\/checkFirstuse.js",
                "background\/contextMenu.js",
                "background\/feedback.js",
                "images\/logo_head.png",
                "images\/flying_envelope_2.gif",
                "js\/jquery-3.3.1.min.js",
                "js\/jquery-ui.js",
                "js\/select2.min.js",
                "css\/select2.min.css",
                "css\/jquery-ui.css",
                "pdf\/pdf.js",
                "pdf\/PMButton.html",
                "options\/Options.html",
                "settings.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*.pdf",
        "*:\/\/*\/*.pdf?*",
        "file:\/\/*\/*.pdf"
    ]
}