Cacher

Save code snippets from anywhere on the web. Companion extension to Cacher, the code snippet organizer for pro developers.

Cacherคืออะไร?

Cacher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.cacher.io และคุณลักษณะหลักของมันคือ "Save code snippets from anywhere on the web. Companion extension to Cacher, the code snippet organizer for pro developers."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Cacher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Save code snippets from anywhere on the web!

Save any code block – Use the "Save to Cacher" button it to quickly save code examples from sites like StackOverflow and Medium.

Save any selected text – Select a block of text, right-click and save it with the Cacher context menu.

Save any Gist – Save any GitHub Gist as a snippet with the "Save to Cacher" button.

––

Cacher is a cross-platform, cloud-based app used to curate a snippet library for you and your team.

Features:

– Desktop clients for Windows, macOS and Linux.
– Full-featured web app: app.cacher.io
– Support for editing and viewing 100+ programming languages.
– Flexible, nest-able color-coded labels to categorize snippets.
– Shareable snippet pages via Cacher's code-sharing community: snippets.cacher.io
– Team and organization features like shared libraries, notifications, role management and code reviews.

Supercharged with integrations for:

– GitHub Gist (Bi-directional sync)
– IntelliJ-Platform IDEs
– Visual Studio Code
– Atom Editor
– Sublime Text
– Slack

––

Note that certain features of Cacher require a plan subscription. View plans and features at: https://www.cacher.io/pricing

Terms of use: https://www.cacher.io/terms
Privacy policy: https://www.cacher.io/privacy                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Cacher Cacher
ID aiiaandmkmekfhembfoghdnfiiiedhhk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cacher/aiiaandmkmekfhembfoghdnfiiiedhhk
คำอธิบาย Save code snippets from anywhere on the web. Companion extension to Cacher, the code snippet organizer for pro developers.
ขนาดไฟล์ 4.37 MB
จำนวนการติดตั้ง 1,784
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2022-07-08
วันที่เผยแพร่ 2020-03-24
คะแนน 4.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://www.cacher.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.cacher.io
URL หน้าช่วยเหลือ https://support.cacher.io
URL หน้านโยบายความเป็นส่วนตัว https://www.cacher.io/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cacher",
    "version": "1.2.0",
    "description": "Save code snippets from anywhere on the web. Companion extension to Cacher, the code snippet organizer for pro developers.",
    "manifest_version": 3,
    "permissions": [
        "contextMenus",
        "notifications",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "styles\/content.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/app.cacher.test\/*",
            "*:\/\/app.cacher.io\/*"
        ]
    },
    "action": {
        "default_popup": "popup\/index.html",
        "default_title": "Cacher",
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}