octofiles

Easily upload files to GitHub & get back URLs to copy

octofilesคืออะไร?

octofiles เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://darcyclarke.me และคุณลักษณะหลักของมันคือ "Easily upload files to GitHub & get back URLs to copy"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย octofiles

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}