octofiles

Easily upload files to GitHub & get back URLs to copy

octofiles란 무엇입니까?

octofiles은(는) https://darcyclarke.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily upload files to GitHub & get back URLs to copy"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        octofiles takes advantage of GitHub's existing issue file upload capabilities... just makes it waaaay easier to use & copy/paste post upload                    

확장 프로그램 기본 정보

이름 octofiles octofiles
ID dbbinlnmlpconpmbecdekkpbhiibhghi
공식 URL https://chromewebstore.google.com/detail/octofiles/dbbinlnmlpconpmbecdekkpbhiibhghi
설명 Easily upload files to GitHub & get back URLs to copy
파일 크기 56.33 KB
설치 횟수 12
현재 버전 1.0.6
최근 업데이트 2019-06-03
출시 날짜 2019-06-03
평점 5.00/5 총 1 개의 평점
개발자 https://darcyclarke.me
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/darcyclarke/octopics
도움말 페이지 URL https://github.com/darcyclarke/octopics/issues/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "octofiles",
    "author": "Darcy Clarke ",
    "description": "Easily upload files to GitHub & get back URLs to copy",
    "version": "1.0.6",
    "homepage_url": "https:\/\/github.com\/darcyclarke\/octofiles",
    "incognito": "spanning",
    "background": {
        "scripts": [
            "app.js"
        ]
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/darcyclarke\/octofiles\/*?octofiles"
            ],
            "run_at": "document_end",
            "js": [
                "inject.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}