All Projects → NV → Chrome Devtools Autosave

NV / Chrome Devtools Autosave

Licence: mit
Auto-saving CSS and JavaScript changes from the Chrome Developer Tools

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Chrome Devtools Autosave

Css Used Chromeext
Get all css rules used by the selected DOM and its children.
Stars: ✭ 146 (-85.85%)
Mutual labels:  chrome-extension, chrome-devtools
React Perftool
A browser developer tool extension, which will help you to inspect the performance of React Js components.
Stars: ✭ 90 (-91.28%)
Mutual labels:  chrome-extension, chrome-devtools
Dirac
A Chrome DevTools fork for ClojureScript developers
Stars: ✭ 732 (-29.07%)
Mutual labels:  chrome-extension, chrome-devtools
Polydev
Automatic web components profiling in chrome devtools
Stars: ✭ 118 (-88.57%)
Mutual labels:  chrome-extension, chrome-devtools
React Rewind
Time Travel Debugger for React useReducer
Stars: ✭ 159 (-84.59%)
Mutual labels:  chrome-extension, chrome-devtools
Nim
Streamline Your Node.js Debugging Workflow with Chromium (Chrome, Edge, More) DevTools.
Stars: ✭ 168 (-83.72%)
Mutual labels:  chrome-extension, chrome-devtools
Ec Devtools
ec-devtools是支持canvas库 ( easycanvas , https://github.com/chenzhuo1992/easycanvas ) 的chrome调试工具,能对canvas的元素的样式、物理属性等进行修改,达到所见即所得的效果,提高调试效率
Stars: ✭ 35 (-96.61%)
Mutual labels:  chrome-extension, chrome-devtools
Sonarrplex
📡 View and manage your shows in Sonarr directly in the Plex app
Stars: ✭ 39 (-96.22%)
Mutual labels:  chrome-extension
Github Review Filter
Chrome extension to filter files in GitHub code review using glob
Stars: ✭ 42 (-95.93%)
Mutual labels:  chrome-extension
Gayhub
An awesome chrome extension for github
Stars: ✭ 995 (-3.59%)
Mutual labels:  chrome-extension
Nsfw Filter
🚀 A Google Chrome / Firefox extension that blocks NSFW images from the web pages that you load using TensorFlow JS.
Stars: ✭ 984 (-4.65%)
Mutual labels:  chrome-extension
Firephp For Browser Devtools
FirePHP for Browser Developer Tools (Web Extension)
Stars: ✭ 39 (-96.22%)
Mutual labels:  chrome-extension
Justmytrello
Chrome extension - Filter the cards that are assigned to you on Trello
Stars: ✭ 42 (-95.93%)
Mutual labels:  chrome-extension
Chrome Medium Unlimited Reading
Chrome extension to remove Medium.com member-only article read limit. https://chrome.google.com/webstore/detail/mediumcom-unlimited-readi/keckgflodjmhejpbhfbfoioonoeeckng
Stars: ✭ 39 (-96.22%)
Mutual labels:  chrome-extension
Tabsorter2
Google Chrome Tab Management Extension - Merge, Sort, split and more :)
Stars: ✭ 44 (-95.74%)
Mutual labels:  chrome-extension
Web Extension Starter
🖥🔋Web Extension starter to build "Write Once Run on Any Browser" extension
Stars: ✭ 987 (-4.36%)
Mutual labels:  chrome-extension
Shift Ctrl F
🔎 Search the information available on a webpage using natural language instead of an exact string match.
Stars: ✭ 1,023 (-0.87%)
Mutual labels:  chrome-extension
Jsonview
A web extension that helps you view JSON documents in the browser.
Stars: ✭ 1,021 (-1.07%)
Mutual labels:  chrome-extension
Google Unlocked
Google Unlocked browser extension uncensor google search results
Stars: ✭ 1,009 (-2.23%)
Mutual labels:  chrome-extension
Toolkit For Ynab
A general purpose YNAB enhancing browser extension for Chrome and Firefox. Have it your way!
Stars: ✭ 1,006 (-2.52%)
Mutual labels:  chrome-extension

Chrome DevTools Autosave

DevTools Autosave on Google I/O 2012 · Intro to DevTools Autosave version 0.x (a bit outdated)

Chrome DevTools let you edit CSS and JavaScript. It even allows you to save it. I think, it’s annoying to choose a folder you want to save to for every file. DevTools Autosave saves the files on every change for you!

How to Install

Chrome DevTools Autosave consists of a Chrome extension and a server. The extension pushes changed files to the server. The server resolves URL of these files and overwrites the old ones with the new ones.

Install the Extension

Install the Server

How to Use

$ autosave
DevTools Autosave is listening on http://127.0.0.1:9104

Open example/index.html locally (using file:// scheme).
Edit some CSS and JS.
That’s it. Files have been saved.

How Does It Work?

Google Chrome has an onResourceContentCommitted event that fires when you edit CSS and JavaScript.

chrome.experimental.devtools.inspectedWindow.onResourceContentCommitted.addListener(function(resource, content) {
    resource.url
    resource.type // 'script', 'stylesheet' or 'document' (happens when you edit inline JS or CSS)
    content // all the content of updated file as a string
})

Nice, isn’t it?

More on Autosave protocol.

FAQ

I’m developing on http://localhost/ (or http://you-name-it/) instead of file://. Can I make Autosave work?

Sure, just add a new route to the extension’s options.

Autosave Options

Alternatives

All the alternative listed below miss one Autosave’s feature: saving newly added CSS rules to the last stylesheet file.

Workspaces

chrome-devtools-workspaces

Latest Chrome DevTools support Workspaces which makes Chrome DevTools Autosave obsolete.

Tincr

The same as Autosave but doesn’t require you to install the server and does both ways syncing!

fb-flo

Two-way sync, requires to install Node and write JS config files.

JetBrains IDE Chrome extension

Works only with JetBrains IDEs, such as WebStorm.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].