Skip to content

Commit e181db0

Browse files
committed
1.1.4: make it work over file://
1 parent a15403d commit e181db0

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ Works with [vuex](https://github.com/vuejs/vuex) for time-travel debugging:
1010

1111
1. vue-devtools only works with Vue.js 1.0.0+.
1212

13-
2. Devtools cannot access pages via `file://` protocol. You need to serve the page over HTTP in order to use it.
14-
15-
3. For Vue version < 1.0.16, The devtool will only work with development (non-minified) versions of Vue, because the devtools hooks are stripped in production builds. This also includes builds produced by Webpack and Browserify in production mode. Vue >= 1.0.16 works with the devtools in all cases.
13+
2. For Vue version < 1.0.16, The devtool will only work with development (non-minified) versions of Vue, because the devtools hooks are stripped in production builds. This also includes builds produced by Webpack and Browserify in production mode. Vue >= 1.0.16 works with the devtools in all cases.
1614

1715
### Installation
1816

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-devtools",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "devtools for Vue.js!",
55
"main": "index.js",
66
"scripts": {

shells/chrome/manifest.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Vue.js devtools",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "Chrome devtools extension for debugging Vue.js applications.",
55
"manifest_version": 2,
66
"icons": {
@@ -20,8 +20,9 @@
2020
},
2121

2222
"permissions": [
23-
"http://*/",
24-
"https://*/*"
23+
"http://*/*",
24+
"https://*/*",
25+
"file://*"
2526
],
2627

2728
"content_scripts": [

src/devtools/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function initApp (shell) {
4848
bridge.once('proxy-fail', () => {
4949
store.dispatch(
5050
'SHOW_MESSAGE',
51-
'Proxy injection failed. Make sure to load your app over HTTP.'
51+
'Proxy injection failed.'
5252
)
5353
})
5454

0 commit comments

Comments
 (0)