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"입니다.
확장 프로그램 스크린샷
Universal Edit Button 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
ID | cemmddlaedjfnndijimmacgkeclafead |
공식 URL | 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" } } |