Open Wiki Edit Page

Context menu to translate Mediawiki-style links (as at Wikipedia) into corresponding edit links. Also open ISBN links into Amazon.

什麼是Open Wiki Edit Page?

Open Wiki Edit Page是由brettz9開發的Chrome擴展程式,該擴展的主要功能是“Context menu to translate Mediawiki-style links (as at Wikipedia) into corresponding edit links. Also open ISBN links into Amazon.”。

擴展截圖

screenshot
screenshot

下載Open Wiki Edit Page擴展crx文件

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

擴展使用說明

                        A webextensions add-on to allow right-clicking on a Mediawiki-style link (as used at Wikipedia) to be able to go directly to its edit page (within the same window or a new tab).

By default looks for the pattern `/wiki/title` or `title=(title)` within links to change them into: `?action=edit&title=(title)` links. Only shows the context menu if those type URLs are found

You can set your own wildcards, and find-replace patterns if different wikis follow different URL patterns.

Also provides two "Open ISBN at Amazon" options (leading to the same window or current tab), usable when right-clicking on a link containing `Special:BookSources` (the format for links leading to ISBN numbers at Mediawiki sites).                    

擴展基本資訊

名稱 Open Wiki Edit Page Open Wiki Edit Page
ID bgkapcgalpheigeojpgjgomopmmdpgaj
官方網址 https://chrome.google.com/webstore/detail/open-wiki-edit-page/bgkapcgalpheigeojpgjgomopmmdpgaj
簡介 Context menu to translate Mediawiki-style links (as at Wikipedia) into corresponding edit links. Also open ISBN links into Amazon.
檔案大小 29.38 KB
安裝次數 34
目前版本 0.8.0
更新時間 2021-12-15
上架時間 2019-11-04
開發者 brettz9
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/brettz9/open-wiki-edit-page/
說明頁面URL https://github.com/brettz9/open-wiki-edit-page/issues/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "short_name": "__MSG_extensionShortName__",
    "description": "__MSG_extensionDescription__",
    "author": "Brett Zamir",
    "version": "0.8.0",
    "homepage_url": "https:\/\/github.com\/brettz9\/open-wiki-edit-page\/",
    "permissions": [
        "contextMenus",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "polyfills\/browser-polyfill.min.js",
            "lib\/background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en",
    "applications": {
        "gecko": {
            "id": "jid0-I2TxZgGZCinjqCrwk4GxEV1zZnk@jetpack"
        }
    }
}