Universal Edit Button
Show a button for editable web pages and wikis
Τι είναι το Universal Edit Button;
Το Universal Edit Button είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον splitbrain, και η κύρια λειτουργία του είναι "Show a button for editable web pages and wikis".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Universal Edit Button
Λήψη αρχείων επέκτασης 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 |
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" } } |