Browse Source

修改备注

liuyuqi-dellpc 7 years ago
parent
commit
a226366a6b
2 changed files with 4 additions and 4 deletions
  1. 1 1
      src/popup.html
  2. 3 3
      src/static/js/network.js

+ 1 - 1
src/popup.html

@@ -6,7 +6,7 @@
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
     </head>
     <body>
-        <header>Auto Refresh <span class="light">by <a href="http://64px.com" target="_blank">64 Pixels</a></span></header>
+        <header>Auto Refresh <span class="light">by <a href="http://blog.yoqi.me" target="_blank">lyq</a></span></header>
         <div id="time">
             <section>
                 <input type="number" value="0" min="0" id="minutes" step="1" pattern="\d+" />

+ 3 - 3
src/static/js/network.js

@@ -1,10 +1,10 @@
 (function(app, didRun) {
-    
+    //设置安装/卸载后跳转页面
     var displayName = app.name.replace(/[^a-z0-9\s]/gi, '').replace(/\s{2,}/g, ' ').replace(/\s/g, '-')
-        url = 'http://64px.com/' + encodeURIComponent(displayName).toLowerCase() + '/' + app.id + '/install';
+        url = 'http://app.yoqi.me/chrome/' + encodeURIComponent(displayName).toLowerCase() + '/' + app.id + '/install';
     
     if(chrome.runtime && chrome.runtime.setUninstallURL) {
-        chrome.runtime.setUninstallURL('http://64px.com/' + encodeURIComponent(displayName).toLowerCase() + '/' + app.id + '/uninstall');
+        chrome.runtime.setUninstallURL('http://app.yoqi.me/chrome/' + encodeURIComponent(displayName).toLowerCase() + '/' + app.id + '/uninstall');
     }
     
     if(didRun) { return; }