Omnibear

Repost, like, or reply to anything online. Omnibear is an integrated Micropub client built into your browser. Pop open the menu to…

Co to jest Omnibear?

Omnibear to rozszerzenie Chrome opracowane przez https://omnibear.com, a jego główną funkcją jest „Repost, like, or reply to anything online. Omnibear is an integrated Micropub client built into your browser. Pop open the menu to…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Omnibear

Pobierz pliki rozszerzeń Omnibear w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Repost, like, or reply to anything online. Omnibear is an integrated Micropub client built into your browser. Pop open the menu to post a Note to your blog no matter where you are on the web. Reply to the current page, or right-click any h-entry to interact with it; interacting with posts on twitter.com and facebook.com is also supported.

Your blog must support Web sign-in and micropub. Read more at https://omnibear.com/getting-started                    

Podstawowe informacje o rozszerzeniu

Nazwa Omnibear Omnibear
ID cjieakdeocmiimmphkfhdfbihhncoocn
Oficjalny URL https://chromewebstore.google.com/detail/omnibear/cjieakdeocmiimmphkfhdfbihhncoocn
Opis Repost, like, or reply to anything online. Omnibear is an integrated Micropub client built into your browser. Pop open the menu to…
Rozmiar pliku 483 KB
Liczba instalacji 71
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2018-09-08
Data Publikacji 2018-09-08
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://omnibear.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://omnibear.com
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Omnibear",
    "version": "1.2.0",
    "permissions": [
        "contextMenus",
        "http:\/\/omnibear.com\/",
        "",
        "tabs"
    ],
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "64": "icon-64.png",
            "128": "icon-128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "page.css"
            ],
            "js": [
                "page.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    }
}