Last active
August 29, 2015 13:56
-
-
Save keewon/9188578 to your computer and use it in GitHub Desktop.
윈도우폰에서 카드사 문자 복사하기
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. 윈도우폰에서 SMS 를 서버랑 연동시킨 상태여야 한다. | |
2. 아래 북마클릿을 등록한다. | |
3. Chrome 이나 기타 북마클릿 사용 가능한 브라우저로 http://outlook.com 으로 가서 본인의 계정으로 접속 | |
4. '메시지 기록' 을 누른다 | |
5. URL 에서 'fid=b' 를 삭제한 후 Enter 를 누른다. | |
6. 이제 메시지 목록에 SMS 가 나온다. | |
7. 북마클릿을 누르면 카드사 문자만 복사할 수 있도록 팝업이 뜬다. | |
8. 복사한 문자를 메모장 등에 붙여 넣는다. | |
9. 페이지를 넘겨 가면서 계속해서 문자를 복사하면 된다. | |
참고 URL: https://github.com/beonit/NaverMoneySync/blob/master/src/beonit/NaverMoneySync/SmsReceiver.java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function () { var nums = [ '15888900', '15888700', '15886700', '15883000', '15884000', '15885000', '0220085000', '15884000', '15888100', '15887000', '15881000', '15661000', '15887200', '15991155', '15991111', '15881788', '15889999', '16449999', '15882100', '15881600', '15776000', '15776200', '15778000', '15884560', '15880056', '15773997', '15881155', '15881599', '15881515', '15881515', '15888801', '15881900', '15887000', '15884114', '15447000', '15447200', '15882588', '15662566', '025158245', '0318618245', '15999000', '15665050', '15995000', ]; var result = ''; var all = document.getElementsByName('mCk'); for (var i=0; i<all.length; ++i) { var text = all[i].getAttribute('aria-label'); text = text.substr(2); text = text.substr(0, text.length-2); for (var j=0; j<nums.length; ++j) { if (text.indexOf(nums[j]) >= 0) { result = result + text + '\r\n'; break; } } } window.prompt('Copy', result); })(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript(function () { | |
var nums = [ | |
"15888900", | |
"15888700", | |
"15886700", | |
"15883000", | |
"15884000", | |
"15885000", | |
"0220085000", | |
"15884000", | |
"15888100", | |
"15887000", | |
"15881000", | |
"15661000", | |
"15887200", | |
"15991155", | |
"15991111", | |
"15881788", | |
"15889999", | |
"16449999", | |
"15882100", | |
"15881600", | |
"15776000", | |
"15776200", | |
"15778000", | |
"15884560", | |
"15880056", | |
"15773997", | |
"15881155", | |
"15881599", | |
"15881515", | |
"15881515", | |
"15888801", | |
"15881900", | |
"15887000", | |
"15884114", | |
"15447000", | |
"15447200", | |
"15882588", | |
"15662566", | |
"025158245", | |
"0318618245", | |
"15999000", | |
"15665050", | |
"15995000", | |
]; | |
var result = ""; | |
var all = document.getElementsByName("mCk"); | |
for (var i=0; i<all.length; ++i) { | |
var text = all[i].getAttribute('aria-label'); | |
text = text.substr(2); | |
text = text.substr(0, text.length-2); | |
for (var j=0; j<nums.length; ++j) { | |
if (text.indexOf(nums[j]) >= 0) { | |
result = result + text + "\r\n"; | |
break; | |
} | |
} | |
} | |
window.prompt("Copy", result); | |
} | |
)(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment