WebCrate Browser Extension

Add links to your own WebCrate instance directly via the browser

WebCrate Browser Extensionคืออะไร?

WebCrate Browser Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย WebCrate และคุณลักษณะหลักของมันคือ "Add links to your own WebCrate instance directly via the browser"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        WebCrate - Organize the Web

This Add-on lets you add links to your own WebCrate instance directly via the browser.

✨ What is WebCrate:

It helps you organize links, articles and more from around the web in a central place and share them as collections (called crates) with the world. It's more than just a bookmarking tool.

It is different than most other web applications in that you get your own separate instance of it. It is completely isolated from other users and even we can't access it. To achieve this, it runs on Deta Space, a new kind of personal cloud.

❔ What is Deta Space:

WebCrate runs on Deta Space, a new personal cloud. All Deta Space apps run in their own separate sand-boxed environment, it is completely isolated from other users and we can't access it. You remain in control of your apps and your data.

👀 How to use:

It requires that you already have your own WebCrate instance up and running on Deta Space. If not, get started here first!

After the installation enter your instance's URL in the settings and you are ready to go. Click the icon in your toolbar and add a link to your WebCrate!

📃 Source Code:

The source code for this extension can be found on GitHub: https://github.com/WebCrateApp/browser-extension

💬 Question, Feedback, Issue

If you have questions, encountered a problem or want to give feedback open an issue on GitHub:  https://github.com/WebCrateApp/webcrate/issues/new/choose

Created by @BetaHuhn                    

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

ชื่อ WebCrate Browser Extension WebCrate Browser Extension
ID hfioihmgjcjdepficckgginjciabkndc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/webcrate-browser-extensio/hfioihmgjcjdepficckgginjciabkndc
คำอธิบาย Add links to your own WebCrate instance directly via the browser
ขนาดไฟล์ 204 KB
จำนวนการติดตั้ง 409
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2023-01-30
วันที่เผยแพร่ 2021-08-04
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา WebCrate
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webcrate.app
URL หน้าช่วยเหลือ https://webcrate.app/docs
URL หน้านโยบายความเป็นส่วนตัว https://webcrate.app/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebCrate Browser Extension",
    "short_name": "WebCrate",
    "author": "Maximilian Schiller ",
    "version": "1.2.0",
    "description": "Add links to your own WebCrate instance directly via the browser",
    "homepage_url": "https:\/\/webcrate.app",
    "permissions": [
        "https:\/\/*.webcrate.app\/*",
        "https:\/\/*.deta.dev\/*",
        "https:\/\/*.deta.app\/*",
        "activeTab",
        "storage",
        "contextMenus",
        "bookmarks"
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "options\/index.html"
    },
    "browser_action": {
        "default_title": "Add a link",
        "default_popup": "popup\/index.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+L",
                "mac": "Alt+Shift+L"
            }
        }
    },
    "omnibox": {
        "keyword": "wc"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png",
        "512": "icons\/icon.png"
    },
    "manifest_version": 2
}