1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- $(function(){
- $('#spendAmount').click(function(){
- // chrome.tabs.getSelected(null, function (tab) {//获取当前tab
- // //向tab发送请求
- // window.alert(tab.id)
- // chrome.runtime.sendMessage('你好');
- // });
- chrome.tabs.getSelected(null, function (tabs) {
- // window.alert(tabs.id)
- console.log(tabs.id)
- chrome.tabs.sendMessage(tabs.id,{method:'getSelection'}, function (response) {
- window.alert(JSON.stringify(response))
- console.log(response, 'content.js回传过来的信息');
- });
- });
- // var notifications = {
- // type:'basic',
- // iconUrl:'icon48.png',
- // title:'123',
- // message:'1234'
- // }
- // chrome.notifications.create('limitNotif',notifications)
- })
- // chrome.storage.get('total',function(budget){
- // $('#total').text(budget.total);
- // })
- // $('#spendAmount').click(function(){
- // chrome.storage.sync.get('total',function(budget){//浏览器存储
- // var newTotal = 0;
- // if(budget.total){
- // newTotal += perseInt(budget.total)
- // }
- // var amount = $('#amount').val()
- // if(amount){
- // newTotal += parseInt(amount)
- // }
- // chrome.storage.sync.set({
- // 'total': newTotal
- // });
- // $('#total').text(newTotal);
- // $('#amount').val("");
- // });
- // });
- // $('#name').keyup(function(){
- // $('#greet').text('Hello ' + $('#name').val())
- // })
- })
|