LibertyBear

An open source userscript manager that supports a lot of browsers

什麼是LibertyBear?

LibertyBear是由trantunglmht2開發的Chrome擴展程式,該擴展的主要功能是“An open source userscript manager that supports a lot of browsers”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載LibertyBear擴展crx文件

下載LibertyBear擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        An open source userscript manager that supports a lot of browsers
LibertyBear forked from Violentmonkey with performance, provides userscripts support for browsers. It works on browsers with WebExtensions support. It supports most scripts for Violentmonkey, Greasemonkey and Tampermonkey.
Features:
- Update automatically according to the meta data.
- Scripts will be executed in order as shown in the list.
- GM functions are supported.
- Support import from and export to a zip file.
- Sync to Dropbox, OneDrive, Google Drive and WebDAV!
- Change load script speed up                    

擴展基本資訊

名稱 LibertyBear LibertyBear
ID coinegbkpholhpicoglgamehmcogoagj
官方網址 https://chromewebstore.google.com/detail/libertybear/coinegbkpholhpicoglgamehmcogoagj
簡介 An open source userscript manager that supports a lot of browsers
檔案大小 538 KB
安裝次數 92
目前版本 2.13.0.9
更新時間 2021-09-28
上架時間 2021-09-27
評分 5.00/5 共 1 次評分
開發者 trantunglmht2
電子郵箱 [email protected]
付費類型 free
擴展官網 https://liberty-bear.com/
說明頁面URL https://github.com/liberty-bear/libertybear/issues
隱私政策頁面URL https://liberty-bear.com/privacy
支援的語言 id,de,en,fr,nl,vi,tr,es,es-419,hr,it,pl,pt-BR,pt-PT,ro,sk,fi,cs,el,sr,ru,uk,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LibertyBear",
    "version": "2.13.0.9",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "author": "Gerald",
    "homepage_url": "https:\/\/violentmonkey.github.io\/",
    "icons": {
        "16": "public\/images\/icon16.png",
        "48": "public\/images\/icon48.png",
        "128": "public\/images\/icon128.png"
    },
    "default_locale": "en",
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "public\/images\/icon16.png",
            "19": "public\/images\/icon19.png",
            "32": "public\/images\/icon32.png",
            "38": "public\/images\/icon38.png"
        },
        "default_title": "LibertyBear",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "page": "background\/index.html"
    },
    "options_page": "options\/index.html",
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "js": [
                "injected-web.js",
                "injected.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "",
        "webRequest",
        "webRequestBlocking",
        "notifications",
        "storage",
        "unlimitedStorage",
        "clipboardWrite",
        "cookies",
        "declarativeContent"
    ],
    "commands": {
        "_execute_browser_action": [],
        "dashboard": {
            "description": "__MSG_menuDashboard__"
        },
        "settings": {
            "description": "__MSG_labelSettings__"
        },
        "newScript": {
            "description": "__MSG_menuNewScript__"
        }
    },
    "minimum_chrome_version": "55.0"
}