Code Self Study

A browser extension for Code Self Study (codeselfstudy.com)

Code Self Study란 무엇입니까?

Code Self Study은(는) https://codeselfstudy.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension for Code Self Study (codeselfstudy.com)"입니다.

확장 프로그램 스크린샷

screenshot

Code Self Study 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is for members of Code Self Study, a programming group with in-person meetups in Berkeley, California and online members around the world.

You can use this extension to get easy access to our group's resource and submit interesting links to our forum with one click.

To share a link to the forum, highlight some text on the page, and click the extension's icon. Then click "Share Current Page" and a forum draft will be created for you. You can edit the draft before publishing it.

This extension is Free open-source software. You can read the code and contribute to its development on Github.                    

확장 프로그램 기본 정보

이름 Code Self Study Code Self Study
ID mejalgpjkfdfpemlljeomjdefolbikch
공식 URL https://chromewebstore.google.com/detail/code-self-study/mejalgpjkfdfpemlljeomjdefolbikch
설명 A browser extension for Code Self Study (codeselfstudy.com)
파일 크기 372 KB
설치 횟수 28
현재 버전 0.8.3
최근 업데이트 2020-01-08
출시 날짜 2020-01-04
평점 5.00/5 총 1 개의 평점
개발자 https://codeselfstudy.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://codeselfstudy.com/
도움말 페이지 URL https://github.com/codeselfstudy/codeselfstudy_browser_extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Self Study",
    "short_name": "codeselfstudy",
    "description": "A browser extension for Code Self Study (codeselfstudy.com)",
    "version": "0.8.3",
    "icons": {
        "64": "icons\/icon.png"
    },
    "permissions": [
        "*:\/\/*.codeselfstudy.com\/*",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "vendor\/browser-polyfill.js",
            "background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "vendor\/browser-polyfill.js",
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "64": "icons\/icon.png"
        },
        "default_popup": "browserAction\/index.html",
        "default_title": "Code Self Study"
    },
    "options_ui": {
        "page": "options\/index.html"
    }
}