Universal Edit Button

Show a button for editable web pages and wikis

什麼是Universal Edit Button?

Universal Edit Button是由splitbrain開發的Chrome擴展程式,該擴展的主要功能是“Show a button for editable web pages and wikis”。

擴展截圖

screenshot

下載Universal Edit Button擴展crx文件

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

擴展使用說明

                        Using this extension, an pen icon will appear in the address bar (Firefox) or Toolbar (Chrome) (similar to the RSS auto-discovery button) when you visit a wiki website that allows you to edit the page.

This works on popular sites like Wikipedia, AboutUs.com, wikiHow and Wikia and also on most of the major wikis including MediaWiki, DokuWiki, TWiki, PHPWiki, MoinMoin and many more.

You can learn more about the idea behind this extension at universaleditbutton.org                    

擴展基本資訊

名稱 Universal Edit Button Universal Edit Button
ID cemmddlaedjfnndijimmacgkeclafead
官方網址 https://chromewebstore.google.com/detail/universal-edit-button/cemmddlaedjfnndijimmacgkeclafead
簡介 Show a button for editable web pages and wikis
檔案大小 19.95 KB
安裝次數 45
目前版本 2.0.1
更新時間 2017-03-20
上架時間 2017-03-20
開發者 splitbrain
付費類型 free
擴展官網 http://universaleditbutton.org
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Universal Edit Button",
    "description": "Show a button for editable web pages and wikis",
    "version": "2.0.1",
    "author": "Andreas Gohr",
    "homepage_url": "http:\/\/universaleditbutton.org",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "skin\/wiki-16.png",
            "19": "skin\/wiki-19.png",
            "24": "skin\/wiki-24.png",
            "32": "skin\/wiki-32.png",
            "38": "skin\/wiki-38.png",
            "48": "skin\/wiki-48.png"
        },
        "default_title": ""
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "skin\/wiki-16.png",
        "24": "skin\/wiki-24.png",
        "32": "skin\/wiki-32.png",
        "48": "skin\/wiki-48.png",
        "96": "skin\/wiki-96.png",
        "128": "skin\/wiki-128.png"
    }
}