加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
bg.js 807 Bytes
一键复制 编辑 原始数据 按行查看 历史
链评网 提交于 2016-10-18 21:04 . Upload manifest.json bg.js icon.png
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
var count=0;
chrome.browserAction.onClicked.addListener(function () {
count++;
chrome.browserAction.setBadgeText({text:''+count});
//chrome.browserAction.setTitle({title:"google"})
chrome.tabs.query({active:true,currentWindow:true},function (tabs) {
console.log(tabs[0]);
var title =encodeURIComponent(tabs[0].title);
var url =encodeURIComponent(tabs[0].url);
var target_url="https://gochannel.org/links/index.php?r=link/create&Link[url]="
+url+"&Link[title]="+title+"&appkey=chrome";
chrome.tabs.create({url:target_url});
})
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化