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ファイルをダウンロード

octofiles拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}