Aceify.ai

A study tool, reimagined.

Aceify.ai란 무엇입니까?

Aceify.ai은(는) https://aceify.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A study tool, reimagined."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Aceify.ai 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Introducing Aceify, the ultimate study companion for your online quizzes and assessments, now available as a Google Chrome extension!

Aceify is designed to support your academic journey by helping you easily collect and review question and answer information from any online quiz or assessment. You can enhance your study sessions and improve your understanding of the course material.

Aceify will help you identify areas where you need to improve and work towards mastering the subject matter. This way, you can focus on the topics that matter most to your academic success.

With Aceify, it's not about finding shortcuts - it's about empowering you to take control of your online learning and excel academically. Start boosting your study sessions and download Aceify today!

Terms and Conditions - https://aceify.ai/terms
Privacy Policy - https://aceify.ai/privacy                    

확장 프로그램 기본 정보

이름 Aceify.ai Aceify.ai
ID gholhpojkalnpdkohpdemfebhccfegnd
공식 URL https://chromewebstore.google.com/detail/aceifyai/gholhpojkalnpdkohpdemfebhccfegnd
설명 A study tool, reimagined.
파일 크기 214 KB
설치 횟수 12,050
현재 버전 1.62
최근 업데이트 2024-01-30
출시 날짜 2023-03-26
평점 3.94/5 총 99 개의 평점
개발자 https://aceify.ai
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://aceify.ai
도움말 페이지 URL https://aceify.ai/support
개인정보 보호 정책 페이지 URL https://aceify.ai/privacy.php
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Aceify.ai",
    "version": "1.62",
    "description": "A study tool, reimagined.",
    "icons": {
        "48": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/aceify.ai\/",
        ""
    ],
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        },
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "css": [
                "styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.aceify.ai\/*"
            ],
            "js": [
                "check.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "screenshot.js"
            ]
        }
    ],
    "commands": {
        "aceify_keyboard_take_screenshot": {
            "suggested_key": {
                "default": "Alt+A",
                "mac": "MacCtrl+A"
            },
            "description": "Take screenshot"
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; font-src 'self' https:\/\/aceify.ai https:\/\/fonts.gstatic.com"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "getGood.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}