Kollate

The only app you will ever need for bookmarking and note taking.

Kollate क्या है?

Kollate https://kollate.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The only app you will ever need for bookmarking and note taking."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Kollate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Kollate is a personal knowledge management tool which allows you to bookmark links, take beautiful notes, and organize them in collections and notebooks. For free.                    

एक्सटेंशन की मूल जानकारी

नाम Kollate Kollate
ID jhfpakfaieihoeoiciffgmmbpaoocbbk
आधिकारिक URL https://chromewebstore.google.com/detail/kollate/jhfpakfaieihoeoiciffgmmbpaoocbbk
विवरण The only app you will ever need for bookmarking and note taking.
फ़ाइल का आकार 2.18 MB
स्थापना संख्या 437
वर्तमान संस्करण 0.143
अंतिम अपडेट 2019-05-01
प्रकाशन तिथि 2019-04-27
रेटिंग 4.25/5 कुल 8 रेटिंग्स
डेवलपर https://kollate.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://kollate.io
गोपनीयता नीति पृष्ठ URL https://kollate.io/public/note/6e26cef0-53f9-11e9-b3cd-37b18fc6ebb7
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kollate",
    "version": "0.143",
    "manifest_version": 2,
    "description": "The only app you will ever need for bookmarking and note taking.",
    "icons": {
        "16": "images\/kollate-16.png",
        "48": "images\/kollate-48.png",
        "128": "images\/kollate-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Kollate",
        "default_icon": "images\/kollate-128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/localhost\/*",
                "*:\/\/kollate.io\/*",
                "*:\/\/*.kollate.io\/*"
            ],
            "css": [],
            "js": [
                "inject_head.js",
                "content_script.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "broadcast_screenshot.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/kollate.io\/*"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "add-resource.html",
        "images\/*.png",
        "editor.html",
        "dropdown.html",
        "screenshot.html",
        "hide-dropdown.html",
        "unhide-note.html",
        "settings.html",
        "thumbnail-selector.html",
        "login-error.html"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+K",
                "mac": "Command+K"
            }
        }
    }
}