octofiles

Easily upload files to GitHub & get back URLs to copy

octofiles là gì?

octofiles là một tiện ích mở rộng Chrome được phát triển bởi https://darcyclarke.me, và tính năng chính của nó là "Easily upload files to GitHub & get back URLs to copy".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng octofiles

Tải xuống các tệp mở rộng octofiles dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên octofiles octofiles
ID dbbinlnmlpconpmbecdekkpbhiibhghi
URL Chính Thức https://chromewebstore.google.com/detail/octofiles/dbbinlnmlpconpmbecdekkpbhiibhghi
Mô tả Easily upload files to GitHub & get back URLs to copy
Kích Thước Tệp 56.33 KB
Số Lần Cài Đặt 12
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2019-06-03
Ngày Phát Hành 2019-06-03
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://darcyclarke.me
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/darcyclarke/octopics
URL Trang Trợ Giúp https://github.com/darcyclarke/octopics/issues/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}