source-editor

Add editor to a source view. Modify code to run on the original page. Using the ACE Editor. Try this one. 1. Modify code.…

Vad är source-editor?

source-editor är en Chrome-tillägg utvecklad av kyo_ago, och dess huvudfunktion är "Add editor to a source view. Modify code to run on the original page. Using the ACE Editor. Try this one. 1. Modify code.…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner source-editor-förlängningens CRX-fil

Ladda ner source-editor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Add editor to a source view.
Modify code to run on the original page.
Using the ACE Editor.


Try this one.
1. Modify code.
http://jsrun.it/kyo_ago/hyZJ/js?test.js

2. Open original page.
http://jsrun.it/kyo_ago/hyZJ                    

Grundläggande Information om Tillägg

Namn source-editor source-editor
ID gfijhpfpapngnbgbaohekogcoohopcbn
Officiell webbadress https://chrome.google.com/webstore/detail/source-editor/gfijhpfpapngnbgbaohekogcoohopcbn
Beskrivning Add editor to a source view. Modify code to run on the original page. Using the ACE Editor. Try this one. 1. Modify code.…
Filstorlek 453 KB
Antal Installationer 821
Aktuell Version 0.7
Senast Uppdaterad 2013-07-21
Publiceringsdatum 2013-07-21
Betyg 2.50/5 Totalt 8 Betyg
Utvecklare kyo_ago
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "browser_action": {
        "default_icon": {
            "19": "\/img\/logo.png",
            "38": "\/img\/logo.png"
        },
        "default_popup": "\/html\/popup.html",
        "default_title": "source-editor"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "\/lib\/jsdeferred.js",
            "\/src\/background.js"
        ]
    },
    "name": "source-editor",
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*.js",
        "https:\/\/*\/*.js",
        "http:\/\/*\/*.css",
        "https:\/\/*\/*.css"
    ],
    "icons": {
        "128": "\/img\/logo.png",
        "16": "\/img\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*.js",
                "https:\/\/*\/*.js",
                "http:\/\/*\/*.css",
                "https:\/\/*\/*.css"
            ],
            "js": [
                "\/lib\/ace.js",
                "\/lib\/ace\/ext-searchbox.js",
                "\/lib\/ace\/keybinding-emacs.js",
                "\/lib\/ace\/keybinding-vim.js",
                "\/lib\/ace\/mode-javascript.js",
                "\/lib\/ace\/mode-css.js",
                "\/lib\/ace\/theme-chrome.js",
                "\/lib\/jsdeferred.js",
                "\/src\/content_scripts\/editor.js",
                "\/src\/content_scripts.js"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "0.7"
}