octofiles

Easily upload files to GitHub & get back URLs to copy

What is octofiles?

octofiles is a Chrome extension developed by https://darcyclarke.me, and its main feature is "Easily upload files to GitHub & get back URLs to copy".

Extension Screenshots

screenshot
screenshot

Download octofiles Extension CRX File

Download octofiles extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name octofiles octofiles
ID dbbinlnmlpconpmbecdekkpbhiibhghi
Official URL https://chromewebstore.google.com/detail/octofiles/dbbinlnmlpconpmbecdekkpbhiibhghi
Description Easily upload files to GitHub & get back URLs to copy
File Size 56.33 KB
Installation Count 12
Current Version 1.0.6
Last Updated 2019-06-03
Publish Date 2019-06-03
Rating 5.00/5 Total 1 Ratings
Developer https://darcyclarke.me
Email [email protected]
Payment Type free
Extension Website https://github.com/darcyclarke/octopics
Help Page URL https://github.com/darcyclarke/octopics/issues/
Supported Languages 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"
    ]
}