Skip to content

Commit

Permalink
add the donation popup back as the donation is getting lower and lower
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuzhuor committed Jun 29, 2022
1 parent 974a729 commit f80c839
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
33 changes: 33 additions & 0 deletions chrome/donation.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
* Copyright (C) 2012 - 2016 Bo Zhu http://zhuzhu.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

/*global chrome: false, localStorage: false */
"use strict";


function create_donation_tab() {
var donation_url = chrome.i18n.getMessage('donation_url');
chrome.tabs.create({
url: donation_url
});
}

chrome.runtime.onInstalled.addListener(function(details) {
if (details.reason === 'install') {
create_donation_tab();
}
});
5 changes: 3 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Unblock Youku",
"version": "3.9.2",
"version": "3.9.3",
"manifest_version": 2,
"minimum_chrome_version": "25.0",
"description": "__MSG_description__",
Expand All @@ -26,7 +26,8 @@
"chrome/header.js",
"chrome/proxy.js",
"chrome/redirect.js",
"chrome/config.js"
"chrome/config.js",
"chrome/donation.js"
]
},
"browser_action": {
Expand Down

0 comments on commit f80c839

Please sign in to comment.