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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        }
    }
}